-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.18 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.18 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
{
"name": "nodetypescripttemplate",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "node dist-server/bin/index.js",
"start-dev": "nodemon --delay 1 dist-server/bin/index.js",
"build": "npm run clean && tsc -p tsconfig.json",
"clean": "rimraf dist-server/**",
"tsc": "tsc -p tsconfig.json",
"tscw": "tsc --watch -p tsconfig.json",
"test": "mocha --reporter min --inline-diffs dist-server/**/*.spec.js",
"test-watch": "npm run test -- -w"
},
"dependencies": {
"body-parser": "~1.16.0",
"cookie-parser": "~1.4.3",
"express": "~4.14.1",
"inversify": "^3.3.0",
"reflect-metadata": "^0.1.10"
},
"devDependencies": {
"@types/body-parser": "^1.16.1",
"@types/chai": "^3.4.35",
"@types/chai-as-promised": "0.0.30",
"@types/cookie-parser": "^1.3.30",
"@types/express": "^4.0.35",
"@types/mocha": "^2.2.40",
"@types/node": "^7.0.11",
"@types/sinon": "^1.16.36",
"@types/sinon-chai": "^2.7.27",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"rimraf": "^2.6.1",
"sinon": "^2.1.0",
"sinon-chai": "^2.9.0",
"typescript": "^2.2.1"
}
}