-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.07 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.07 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
{
"name": "server",
"version": "1.0.0",
"description": "fullstack-401-final",
"main": "server",
"scripts": {
"test": "mocha --recursive",
"start": "node server.js",
"start:watch": "nodemon server.js"
},
"repository": {
"type": "git",
"url": ""
},
"author": "Brigitte, Tom, Lynn, and Claire",
"license": "ISC",
"bugs": {
"url": "https://github.com/colordiary/server/issues"
},
"homepage": "https://github.com/colordiary/server",
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"eslint": "^3.18.0",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"promise": "^7.1.1",
"superagent": "^3.5.2",
"validator": "^7.0.0"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.17.1",
"chart.js": "^2.5.0",
"dotenv": "^4.0.0",
"express": "^4.15.2",
"jsonwebtoken-promisified": "^1.0.3",
"mongoose": "^4.9.1",
"mongoose-validators": "^0.1.0",
"morgan": "^1.8.1",
"node-mongoose-validator": "^1.2.0",
"request": "^2.81.0",
"request-promise": "^4.2.0"
}
}