-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.32 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "janitor",
"version": "1.0.1",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/bitzlato/janitor.git"
},
"scripts": {
"build": "rm -rf build && tsc --build tsconfig.json",
"start": "NODE_ENV=development ts-node src/index.ts --port 8080",
"test": "NODE_ENV=development jest --runInBand --silent",
"report": "node build/buildReporter.js",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major"
},
"author": "https://github.com/velsamm",
"license": "ISC",
"devDependencies": {
"@babel/core": "7.15.5",
"@babel/preset-env": "7.15.6",
"@babel/preset-typescript": "7.15.0",
"@types/express": "4.17.13",
"@types/jest": "27.0.2",
"@types/semver": "7.3.8",
"@types/supertest": "2.0.11",
"babel-jest": "27.2.4",
"jest": "27.2.4",
"supertest": "6.1.6",
"ts-jest": "27.0.5",
"ts-node": "10.2.1",
"typescript": "4.4.3"
},
"dependencies": {
"@bugsnag/js": "7.11.0",
"@bugsnag/plugin-express": "7.11.0",
"@godaddy/terminus": "4.9.0",
"bugsnag-build-reporter": "2.0.0",
"commander": "8.2.0",
"express": "4.17.1",
"node-yaml-config": "1.0.0",
"semver": "7.3.5",
"winston": "3.3.3"
},
"engines": {
"node": ">=14.16.0"
}
}