-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.39 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.39 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
47
48
49
{
"name": "webserver-nodeexpress",
"version": "1.0.0",
"description": "A sample web server in node and express",
"main": "index.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js -e js,hbs",
"test": "export NODE_ENV=test || SET \"NODE_ENV=test\" && mocha server/**/*.test.js",
"test-chat": "export NODE_ENV=test || SET \"NODE_ENV=test\" && mocha server/chat/**/*.test.js",
"test-watch": "nodemon --exec \"npm test\"",
"test-watch-chat": "nodemon --exec \"yarn test-chat\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/timurista/webserver-nodeexpress.git"
},
"engines": {
"node": "8.7.0"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/timurista/webserver-nodeexpress/issues"
},
"homepage": "https://github.com/timurista/webserver-nodeexpress#readme",
"dependencies": {
"axios": "^0.17.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"express": "^4.16.2",
"express-favicon": "^2.0.0",
"hbs": "^4.0.1",
"jsonwebtoken": "^8.1.0",
"moment": "^2.19.1",
"mongodb": "^2.2.33",
"mongoose": "^4.12.2",
"serve-favicon": "^2.4.5",
"socket.io": "^2.0.4",
"validator": "^9.0.0"
},
"devDependencies": {
"crypto-js": "^3.1.9-1",
"expect": "^21.2.1",
"mocha": "^4.0.1",
"nodemon": "^1.12.1",
"supertest": "^3.0.0"
}
}