-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 846 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
{
"name": "PlanToGo-Server",
"version": "1.0.0",
"description": "The backend RESTFUL API server for the PlanToGo web app.",
"main": "index.js",
"repository": "https://github.com/muiradams/plantogo-server",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon index.js",
"start": "node index.js"
},
"author": "Muir Adams",
"license": "GPL-3.0",
"dependencies": {
"async": "^2.1.4",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.15.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.1",
"express": "^4.14.0",
"express-session": "^1.14.2",
"jwt-simple": "^0.5.1",
"mongoose": "^4.7.2",
"morgan": "^1.7.0",
"nodemailer": "^0.7.1",
"nodemon": "^1.11.0",
"passport": "^0.3.2",
"passport-jwt": "^2.2.1",
"passport-local": "^1.0.0"
}
}