forked from greenroach/express-ts-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 3.14 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
79
80
81
82
83
84
85
86
87
88
89
{
"name": "express-ts-template",
"version": "1.0.3",
"description": "Base app for ExpressJs and TypeScript based on expressjs/generator and TypeScript-Node-Starter",
"main": "server.js",
"scripts": {
"start": "npm run watch",
"_start": "npm run serve",
"build": "npm run build-ts && npm run tslint",
"serve": "node lib/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"build-ts": "tsc",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"tslint-fix": "tslint --fix -c tslint.json -p tsconfig.json",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect lib/server.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\"",
"install-global": "npm install -g supervisor http-server ndb",
"ts-clear": "rm -fr lib/* && npm run build-ts",
"test": "npm run test-ts",
"test-ts": "mocha --timeout 15000 --watch --recursive src/**/*.spec.ts --require ts-node/register --watch-extensions ts",
"test-debug": "ndb mocha --timeout 15000 --watch --recursive src/**/*.spec.ts --require ts-node/register --watch-extensions ts",
"test-one": "mocha --timeout 90000 --watch --require ts-node/register --watch-extensions ts $1",
"test-one-debug": "ndb mocha --timeout 90000 --watch --require ts-node/register --watch-extensions ts $1",
"version": "node scripts/api-version",
"host-ip": "node scripts/host-ip -c API_CONTAINER_NAME"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/dotenv": "^4.0.3",
"@types/es6-shim": "^0.31.37",
"@types/lodash": "^4.14.110",
"@types/ramda": "^0.25.34",
"@types/traverse": "^0.6.31",
"aws-sdk": "^2.275.1",
"aws-serverless-express": "^3.2.0",
"body-parser": "^1.18.3",
"compression": "^1.7.2",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-async-handler": "^1.1.3",
"express-jwt": "^5.3.1",
"express-unless": "^0.5.0",
"express-validator": "^5.3.0",
"formidable": "^1.2.1",
"jwks-rsa": "^1.3.0",
"lodash": "^4.17.10",
"loglevel": "^1.6.1",
"moment": "^2.22.2",
"moment-timezone": "^0.5.21",
"nocache": "^2.0.0",
"partial.lenses": "^13.14.0",
"pg-monitor": "^1.0.0",
"pg-promise": "^8.4.5",
"ramda": "^0.25.0",
"ramda-debug": "^0.1.4",
"request-debug": "^0.2.0",
"request-promise": "^4.2.2",
"traverse": "^0.6.6",
"uuid": "^3.3.2",
"winston": "^3.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.4",
"@types/express": "^4.16.0",
"@types/mocha": "^5.2.4",
"@types/moment-timezone": "^0.5.6",
"@types/node": "^10.5.1",
"@types/request-promise": "^4.1.42",
"@types/shelljs": "^0.8.0",
"@types/supertest": "^2.0.4",
"@types/uuid": "^3.4.3",
"chai": "^4.1.2",
"command-line-args": "^5.0.2",
"commander": "^2.17.1",
"concurrently": "^3.6.0",
"mocha": "^5.2.0",
"nodemon": "^1.17.5",
"shelljs": "^0.8.2",
"superagent-binary-parser": "^1.0.1",
"supertest": "^3.1.0",
"ts-node": "^7.0.0",
"tslint": "^5.10.0",
"tslint-no-unused-expression-chai": "^0.1.3",
"typescript": "^2.9.2"
}
}