-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.11 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
{
"name": "node-todo",
"version": "1.0.0",
"description": "A NodeJS todo app with RESTful API",
"main": "index.js",
"repository": "https://github.com/mohitgarg/node-todo.git",
"author": "Mohit Garg <gargmohit@live.in>",
"license": "MIT",
"scripts": {
"start": "babel-node server/server.js",
"dev": "nodemon --exec babel-node server/server.js",
"test": "export NODE_ENV=test || SET \"NODE_ENV=test\" && mocha --compilers js:babel-core/register server/**/*.test.js",
"test-watch": "nodemon --exec yarn run test"
},
"engines": {
"node": "7.10.0",
"yarn": "0.24.4"
},
"dependencies": {
"body-parser": "^1.17.1",
"express": "^4.15.2",
"jsonwebtoken": "^7.4.1",
"lodash": "^4.17.4",
"mongodb": "^2.2.26",
"mongoose": "^4.9.9",
"validator": "^7.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"chalk": "^1.1.3",
"eslint": "^3.19.0",
"eslint-plugin-import": "^2.2.0",
"expect": "^1.20.2",
"mocha": "^3.4.1",
"nodemon": "^1.11.0",
"standard": "^10.0.2",
"supertest": "^3.0.0"
}
}