-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.41 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.41 KB
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
{
"name": "auth",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "nodemon -w ./src -e ts ./src/bin/www --exec ts-node",
"lint": "tslint --fix -c tslint.json ./src/**/**/*.ts",
"test": "nyc mocha ./src/**/*.spec.ts",
"build": "tsc --outDir dist ",
"serve": "node ./dist/bin/www.js"
},
"nyc": {
"exclude": [
"src/**/*.spec.ts"
]
},
"dependencies": {
"@types/joi": "13.3.0",
"bcrypt-nodejs": "0.0.3",
"body-parser": "1.18.3",
"debug": "3.1.0",
"dotenv": "6.0.0",
"express": "4.16.3",
"inversify": "4.13.0",
"inversify-express-utils": "6.0.0",
"joi": "13.4.0",
"jsonwebtoken": "8.3.0",
"node-uuid": "^1.4.7",
"redis": "2.8.0",
"reflect-metadata": "0.1.12",
"rolling-rate-limiter": "0.1.11",
"web-request": "1.0.7"
},
"devDependencies": {
"@types/bcrypt-nodejs": "0.0.30",
"@types/chai": "4.1.4",
"@types/chai-http": "3.0.4",
"@types/debug": "0.0.30",
"@types/express": "4.16.0",
"@types/jsonwebtoken": "7.2.0",
"@types/mocha": "5.2.2",
"@types/node": "10.3.4",
"@types/node-uuid": "0.0.28",
"@types/redis": "2.8.6",
"chai": "4.1.2",
"chai-http": "4.0.0",
"mocha": "5.2.0",
"nodemon": "1.17.5",
"nyc": "12.0.2",
"ts-node": "6.1.1",
"tslint": "5.10.0",
"tslint-config-standard": "7.0.0",
"tslint-loader": "3.6.0",
"typescript": "2.9.2"
}
}