-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 913 Bytes
/
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
{
"name": "techdegree-fullstackjs-course-review-rest-api",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"start": "nodemon ./src/index.js localhost 5000",
"debug": "nodemon --inspect ./src/index.js localhost 5000",
"seed": "node ./src/models/seeder.js",
"bundle": "./node_modules/.bin/webpack"
},
"engines": {
"node": "7.0.0"
},
"author": "",
"license": "ISC",
"devDependencies": {
"mongoose-seeder": "1.2.1",
"nodemon": "^1.9.1",
"webpack": "^1.12.14"
},
"dependencies": {
"angular": "^1.5.0",
"angular-route": "^1.5.0",
"angular-sanitize": "^1.5.0",
"basic-auth": "1.1.0",
"bcrypt": "1.0.2",
"body-parser": "1.16.1",
"express": "^4.13.4",
"jquery": "^2.2.2",
"mongoose": "4.8.2",
"morgan": "^1.7.0",
"showdown": "^1.3.0",
"toastr": "^2.1.2",
"underscore": "^1.8.3"
}
}