-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
60 lines (60 loc) · 1.67 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
49
50
51
52
53
54
55
56
57
58
59
60
{
"engines": {
"node": "7.10.0"
},
"dependencies": {
"autoprefixer": "6.7.7",
"bcrypt": "1.0.2",
"bcrypt-pbkdf": "1.0.1",
"body-parser": "1.17.1",
"cloudinary": "1.8.0",
"cookie-parser": "1.4.3",
"crypto": "0.0.3",
"css-loader": "0.27.3",
"cssnano": "3.10.0",
"eslint": "3.17.1",
"eslint-config-xo": "0.17.0",
"express": "4.15.2",
"express-fileupload": "0.1.2",
"express-https-redirect": "1.0.0",
"express-session": "1.15.1",
"extract-text-webpack-plugin": "2.1.0",
"handlebars": "4.0.6",
"handlebars-layouts": "3.1.4",
"hbs": "4.0.1",
"morgan": "1.8.1",
"nodemailer": "4.0.1",
"nodemon": "1.11.0",
"passport": "0.3.2",
"passport-local": "1.0.0",
"pg": "6.1.4",
"postcss-loader": "1.3.3",
"sequelize": "3.30.2",
"serve-favicon": "2.4.1",
"style-loader": "0.16.1",
"stylelint": "7.9.0",
"stylelint-config-hrundel": "1.0.3",
"stylus": "0.54.5",
"stylus-loader": "3.0.1",
"url-loader": "0.5.8",
"webpack": "2.3.2",
"webpack-shell-plugin": "0.5.0"
},
"devDependencies": {
"autoprefixer": "6.7.7",
"eslint": "3.17.1",
"mocha": "3.2.0",
"sinon": "2.2.0",
"supertest": "3.0.0",
"surge": "0.19.0"
},
"scripts": {
"build": "set 'NODE_ENV=production' && webpack",
"build:dev": "set 'NODE_ENV=development' && webpack",
"lint": "eslint . && stylelint ./app/**/*.css --allow-empty-input",
"test": "npm run lint && mocha **/controllers/*.spec.js **/models/*.spec.js **/scripts/*.spec.js",
"createTables": "node scripts/createDefault",
"start": "nodemon app/index.js",
"deploy:surge": "surge -p ./app/public"
}
}