-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.91 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
{
"name": "express-typescript-starter",
"author": "Nikita Stryuk",
"license": "ISC",
"scripts": {
"start": "node bin/src/index.js",
"dev": "nodemon --exec ts-node --files src/index.ts --watch src",
"build": "npm run bundle-docs && rimraf bin && tsc",
"test": "jest --detectOpenHandles --runInBand",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"lint:fix": "tslint --fix -c tslint.json 'src/**/*.ts'",
"serve-docs": "swagger-ui-watcher ./specification/swagger/index.json",
"bundle-docs": "swagger-ui-watcher ./specification/swagger/index.json --bundle=./specification/openapi.json"
},
"dependencies": {
"body-parser": "1.18.3",
"celebrate": "10.0.0",
"compression": "1.7.3",
"cors": "2.8.5",
"dotenv": "8.0.0",
"escape-string-regexp": "2.0.0",
"express": "4.16.4",
"express-async-handler": "1.1.4",
"helmet": "3.15.0",
"http-status": "1.3.1",
"joi-objectid": "2.0.0",
"mongoose": "5.4.3",
"morgan": "1.9.1",
"redis": "2.8.0",
"rotating-file-stream": "1.4.0",
"swagger-ui-express": "4.0.2"
},
"devDependencies": {
"@types/compression": "0.0.36",
"@types/cors": "2.8.4",
"@types/dotenv": "6.1.0",
"@types/escape-string-regexp": "2.0.1",
"@types/express": "4.16.0",
"@types/helmet": "0.0.43",
"@types/jest": "24.0.6",
"@types/joi": "14.3.2",
"@types/mongoose": "5.3.7",
"@types/morgan": "1.7.35",
"@types/redis": "2.8.10",
"@types/supertest": "2.0.7",
"@types/swagger-ui-express": "3.0.0",
"husky": "2.2.0",
"jest": "24.1.0",
"lint-staged": "8.1.0",
"nodemon": "1.18.9",
"prettier": "1.15.3",
"supertest": "4.0.2",
"swagger-ui-watcher": "2.1.6",
"ts-jest": "24.0.0",
"ts-node": "8.0.2",
"tslint": "5.12.0",
"tslint-config-airbnb": "5.11.1",
"tslint-config-prettier": "1.17.0",
"tslint-plugin-prettier": "2.0.1",
"typescript": "3.2.2"
}
}