-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.28 KB
/
package.json
File metadata and controls
54 lines (54 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
47
48
49
50
51
52
53
54
{
"name": "node-mongo-todo-app",
"version": "1.0.0",
"description": "Todo app built with Node, express & mongodb",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev:server": "nodemon server.js",
"lint": "eslint . --ext .js, .jsx",
"lint:fix": "eslint --fix . --ext .js, .jsx",
"test": "export NODE_ENV=test_local || SET \"NODE_ENV=test_local\" && mocha tests/**/*.test.js --exit",
"test:ci": "mocha tests/**/*.test.js --exit",
"test:watch": "nodemon --exec \"npm test\""
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"engines": {
"node": "9.5.0",
"npm": "5.6.0"
},
"keywords": [
"Node.js",
"Express",
"MongoDB",
"Mongoose",
"Todo-app"
],
"author": "Kafil Uddin Kiron",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"ejs": "^2.5.7",
"express": "^4.16.2",
"lodash": "^4.17.5",
"mongodb": "^3.0.3",
"mongoose": "^5.0.7",
"morgan": "^1.9.0",
"nodemon": "^1.17.1",
"validator": "^9.4.1"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint-config-latest": "^1.0.6",
"husky": "^0.15.0-rc.8",
"jsonwebtoken": "^8.2.0",
"mocha": "^5.0.1",
"supertest": "^3.0.0"
}
}