-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.28 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.28 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
45
46
{
"name": "sweep-server",
"version": "1.0.0",
"description": "This is node server for Sweep web app and mobile clients",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec --compilers ts:ts-node/register test/**/*.test.ts",
"start": "node dist/index.js",
"debug": "node-debug dist/index.js",
"build": "gulp",
"start-db-server": "mongod -f mongodb.conf",
"start-db-client": "mongo --port 1234"
},
"devDependencies": {
"@types/body-parser": "0.0.33",
"@types/chai": "^3.4.34",
"@types/chai-http": "0.0.29",
"@types/cookie-parser": "^1.3.30",
"@types/debug": "0.0.29",
"@types/express": "^4.0.33",
"@types/mocha": "^2.2.32",
"@types/morgan": "^1.7.32",
"@types/node": "^6.0.46",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"cookie-parser": "^1.4.3",
"gulp": "^3.9.1",
"gulp-typescript": "^3.1.1",
"mocha": "^3.1.2",
"ts-node": "^1.6.1",
"typescript": "^2.0.6"
},
"dependencies": {
"@types/mongodb": "^2.1.40",
"@types/websocket": "0.0.33",
"async": "^2.2.0",
"body-parser": "^1.15.2",
"debug": "^2.2.0",
"express": "^4.14.0",
"mongodb": "^2.2.24",
"morgan": "^1.7.0",
"websocket": "^1.0.24"
},
"author": "asharmaanil@gmail.com",
"license": "MIT"
}