-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.19 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
42
43
44
{
"name": "nodejs-ts",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "npm run clean && mocha --opts mocha.opts",
"test:watch": "npm run clean && mocha --opts mocha.opts --watch",
"start": "npm run build && node src/server.js",
"start:watch": "nodemon --exec npm run start -- ./src/server.ts",
"clean": "rimraf src/**/*.js src/**/*.js.* test/**/*.js test/**/*.js.*",
"build": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@reactivex/rxjs": "^5.3.0",
"body-parser": "^1.17.1",
"express": "^4.15.2",
"kue": "^0.11.5",
"morgan": "^1.8.1"
},
"devDependencies": {
"@types/body-parser": "^1.16.3",
"@types/chai": "^3.5.1",
"@types/chai-http": "0.0.30",
"@types/debug": "0.0.29",
"@types/express": "^4.0.35",
"@types/kue": "^0.11.0",
"@types/mocha": "^2.2.41",
"@types/morgan": "^1.7.32",
"@types/node": "^7.0.13",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"chalk": "^1.1.3",
"mocha": "^3.3.0",
"mocha-typescript": "^1.0.23",
"nodemon": "^1.11.0",
"rimraf": "^2.6.1",
"ts-node": "^3.0.2",
"typescript": "^2.2.2"
}
}