-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.53 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
{
"name": "web-api",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"clean": "rm -rf dist",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"tsc": "tsc -p .",
"test": "mocha -r ts-node/register --recursive \"./api/**/*.spec.ts\"",
"build": "npm-run-all clean lint tsc",
"start": "pm2 start ./dist/app.js -i ${NODE_PROCESSES} --name 'web.api' --no-daemon",
"dev:mon": "nodemon --watch api -e ts,json --exec ts-node ./api/app.ts",
"dev": "npm-run-all lint dev:mon"
},
"private": true,
"license": "Commercial",
"dependencies": {
"@types/body-parser": "1.17.0",
"@types/compression": "0.0.36",
"@types/express": "4.16.0",
"@types/helmet": "0.0.42",
"@types/js-yaml": "3.11.2",
"@types/morgan": "1.7.35",
"@types/node": "10.12.15",
"@types/swagger-ui-express": "3.0.0",
"ajv": "6.6.2",
"body-parser": "1.18.3",
"compression": "^1.6.2",
"express": "4.16.4",
"helmet": "3.15.0",
"js-yaml": "3.12.0",
"json-refs": "3.0.12",
"morgan": "^1.8.1",
"npm-run-all": "4.1.5",
"swagger-ui-express": "4.0.2",
"tslint": "5.11.0",
"ts-node": "7.0.1",
"typescript": "3.2.2",
"winston": "3.1.0"
},
"devDependencies": {
"@types/chai": "4.1.7",
"@types/mocha": "5.2.5",
"@types/supertest": "2.0.7",
"chai": "4.2.0",
"eslint": "^4.12.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"mocha": "5.2.0",
"nodemon": "1.18.9",
"supertest": "3.3.0"
}
}