-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.21 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
{
"name": "azure-node-todo",
"version": "0.0.0",
"private": true,
"scripts": {
"clean": "rimraf lib",
"lint": "tslint --force --format verbose \"server/**/*.ts\"",
"build": "npm run clean && npm run lint && echo Using TypeScript && tsc --version && tsc --pretty",
"test": "npm run build && mocha --compilers ts:ts-node/register --recursive test/**/*-spec.ts",
"watch": "npm run build -- --watch",
"watch:test": "npm run test -- --watch",
"e2etst": "npm run ",
"start":"node ./bin/www"
},
"dependencies": {
"body-parser": "~1.16.0",
"cookie-parser": "~1.4.3",
"debug": "^2.6.1",
"express": "~4.14.1",
"jade": "~1.11.0",
"morgan": "~1.7.0",
"pg": "^6.1.2",
"pg-connection-string": "^0.1.3",
"serve-favicon": "~2.3.2"
},
"devDependencies": {
"@types/body-parser": "0.0.33",
"@types/cookie-parser": "^1.3.30",
"@types/debug": "0.0.29",
"@types/express": "^4.0.35",
"@types/morgan": "^1.7.32",
"@types/node": "^7.0.5",
"@types/pg": "^6.1.36",
"@types/serve-favicon": "^2.2.28",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"rimraf": "^2.5.4",
"ts-node": "^2.1.0",
"tslint": "^4.4.2",
"typescript": "^2.1.6"
}
}