-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 986 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
{
"name": "Samfish-Webserver",
"version": "1.0.0",
"description": "Samfish backend RESTful API.",
"main": "server.js",
"scripts": {
"start": "NODE_ENV=prod node --harmony --harmony_destructuring --use_strict server.js",
"dev": "DEBUG=*,-express:*,-nodemon* NODE_ENV=dev nodemon --harmony --use_strict server.js & npm run watch",
"watch": "gulp"
},
"author": "Justin D'Errico <[email protected]>",
"dependencies": {
"bcrypt": "^0.8.7",
"body-parser": "^1.15.2",
"cors": "^2.8.0",
"debug": "^2.2.0",
"express": "^4.14.0",
"gulp-eslint": "^2.0.0",
"lodash": "^4.13.1",
"nodemailer": "^2.4.2",
"pg": "^6.0.1",
"sequelize": "^3.23.4",
"sparkpost": "^1.3.8"
},
"devDependencies": {
"eslint": "^2.13.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-react": "^5.2.2",
"globby": "^5.0.0",
"gulp": "^3.9.1",
"gulp-util": "^3.0.7",
"gulp-watch": "^4.3.8",
"nodemon": "^1.9.2"
}
}