udemy-node-todo-app/package.json

26 lines
529 B
JSON
Raw Normal View History

2017-11-29 05:35:37 +00:00
{
"name": "node-todo-api",
"version": "1.0.0",
2017-11-30 03:52:44 +00:00
"description": "yeahhh",
"main": "server/server.js",
2017-11-29 05:35:37 +00:00
"scripts": {
2017-11-30 04:15:25 +00:00
"test": "mocha server/**/*.test.js",
"test-watch": "nodemon --exec 'npm test'"
2017-11-29 05:35:37 +00:00
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
2017-11-30 03:52:44 +00:00
"body-parser": "^1.15.2",
"express": "^4.14.0",
"mongodb": "^2.2.5",
"mongoose": "^4.5.9"
2017-11-30 04:15:25 +00:00
},
"devDependencies": {
"expect": "^1.20.2",
"mocha": "^3.0.2",
"nodemon": "^1.10.2",
"supertest": "^2.0.0"
2017-11-29 05:35:37 +00:00
}
}