-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.15 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "backend-boilerplate",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "nodemon -w ./src -e ts ./src/bin/www --exec ts-node",
"work": "nodemon -w ./src -e ts ./src/bin/queue --exec ts-node",
"lint": "tslint './src/**/*.ts'",
"lintFix": "tslint --fix './src/**/*.ts'",
"test": "nyc mocha $(find src -name '*.spec.ts') --require test/prepare.ts --exit",
"testCase": "nyc mocha --require test/prepare.ts --exit",
"build": "tsc -p tsconfig.build.json --outDir dist",
"serve": "node ./dist/bin/www.js"
},
"nyc": {
"exclude": [
"src/**/*.spec.ts"
]
},
"dependencies": {
"body-parser": "~1.18.3",
"bull": "3.5.2",
"debug": "~3.1.0",
"dotenv": "6.0.0",
"express": "~4.16.3",
"inversify": "4.13.0",
"inversify-express-utils": "6.0.0",
"joi": "13.3.0",
"jsonwebtoken": "^8.2.2",
"mongodb": "3.0.10",
"morgan": "1.9.0",
"node-uuid": "^1.4.7",
"onesignal-node": "2.0.1",
"passport": "0.4.0",
"passport-facebook": "2.1.1",
"redis": "2.8.0",
"reflect-metadata": "0.1.12",
"request-promise": "4.2.2",
"rolling-rate-limiter": "0.1.11",
"socket.io": "2.1.1",
"typeorm": "0.2.6",
"web-request": "1.0.7",
"winston": "2.4.2"
},
"devDependencies": {
"@types/chai": "4.1.3",
"@types/chai-http": "3.0.4",
"@types/debug": "0.0.30",
"@types/express": "4.11.1",
"@types/faker": "4.1.2",
"@types/joi": "13.0.8",
"@types/jsonwebtoken": "7.2.7",
"@types/mocha": "5.2.1",
"@types/mongodb": "3.1.15",
"@types/nock": "9.1.3",
"@types/node": "10.3.0",
"@types/node-uuid": "0.0.28",
"@types/redis": "2.8.6",
"@types/request-promise": "4.1.42",
"@types/socket.io": "2.1.0",
"@types/winston": "2.3.9",
"chai": "4.1.2",
"chai-http": "4.0.0",
"faker": "4.1.0",
"mocha": "5.2.0",
"mocha-prepare": "0.1.0",
"mongodb-restore": "1.6.2",
"nock": "9.3.0",
"nodemon": "^1.17.5",
"nyc": "12.0.2",
"ts-node": "6.1.0",
"tslint": "5.10.0",
"tslint-config-standard": "7.0.0",
"tslint-loader": "3.6.0",
"typemoq": "2.1.0",
"typescript": "2.9.1"
}
}