-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.53 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.53 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
50
51
52
53
54
55
56
57
{
"name": "test",
"version": "1.0.0",
"description": "node js demo",
"main": "app.js",
"scripts": {
"start-mongodb": "node node-todo-api/server/server.js",
"test": "export NOOE_ENV=test || SET \"NOOE_ENV = test\" && mocha **/**/*.test.js",
"start": "node web-server/server.js",
"test-watch": "nodemon --exec 'npm test'",
"test-mongodb": "export NOOE_ENV=test || SET \"NOOE_ENV = test\" && mocha node-todo-api/server/tests/server.test.js",
"test-watch-mongodb": "nodemon --exec 'npm run test-mongodb'",
"start-chat": "node node-chat-app/server/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LSH-team/Nodejs-demo.git"
},
"engines": {
"node": "8.9.3"
},
"author": "lsh",
"license": "ISC",
"bugs": {
"url": "https://github.com/LSH-team/Nodejs-demo/issues"
},
"homepage": "https://github.com/LSH-team/Nodejs-demo#readme",
"dependencies": {
"axios": "^0.17.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"crypto-js": "^3.1.9-1",
"express": "^4.16.3",
"hbs": "^4.0.1",
"jsonwebtoken": "^8.2.1",
"lodash": "^4.17.4",
"mongodb": "^3.0.7",
"nodemon": "^1.17.4",
"nvm": "0.0.4",
"request": "^2.73.0",
"validator": "^10.2.0",
"yargs": "^10.0.3"
},
"devDependencies": {
"expect": "^1.20.2",
"mongoose": "^5.1.1",
"rewire": "^3.0.2",
"supertest": "^3.0.0"
},
"consumedServices": {
"file-icons.element-icons": {
"versions": {
"1.0.0": "consumeElementIcons"
}
}
}
}