-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.39 KB
/
package.json
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
{
"name": "todo-application-backend",
"version": "0.1.0",
"description": "This is an api server using express and mongodb written as a backend for a todo application.",
"main": "backend/server.js",
"scripts": {
"test": "gulp test",
"start:db": "mongod -dbpath=./backend/data/db --smallfiles",
"start": "node backend/server.js",
"start:dev": "ANGULAR_TODO_LOG_ERRORS=true DEBUG=todo* nodemon backend/server.js"
},
"engines": {
"node": "6.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fraziermork/todo-application-backend.git"
},
"author": "Frazier Mork <[email protected]> (https://frazier-fibonacci.herokuapp.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fraziermork/todo-application-backend/issues"
},
"homepage": "https://github.com/fraziermork/todo-application-backend#readme",
"dependencies": {
"bcrypt": "^0.8.6",
"bluebird": "^3.4.0",
"body-parser": "^1.15.1",
"chalk": "^1.1.3",
"cookie-parser": "^1.4.3",
"cors": "^2.7.1",
"debug": "^2.2.0",
"express": "^4.13.4",
"jsonwebtoken": "^7.0.0",
"mongoose": "^4.4.19",
"lodash": "^4.13.1",
"morgan": "^1.7.0"
},
"devDependencies": {
"btoa": "^1.1.2",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"gulp": "^3.9.1",
"gulp-eslint": "^2.0.0",
"gulp-mocha": "^2.2.0",
"mocha": "^2.5.3"
}
}