...
|
...
|
@@ -12,8 +12,8 @@ |
|
|
"dev": "node_modules/.bin/nodemon -e js,hbs -i public/ app.js",
|
|
|
"online": "NODE_ENV=\"production\" node app.js",
|
|
|
"debug": "DEBUG=\"express:*\" node app.js",
|
|
|
"lint-js": "node_modules/.bin/eslint -c .eslintrc --cache --fix `git diff --cached --name-only --diff-filter=ACM | grep .js$` app.js",
|
|
|
"lint-css": "node_modules/.bin/stylelint --config .stylelintrc `git diff --cached --name-only --diff-filter=ACM | grep .css$`",
|
|
|
"lint-js": "file=`git diff --cached --name-only --diff-filter=ACM | grep .js$`;node_modules/.bin/eslint -c .eslintrc --cache --fix $file app.js",
|
|
|
"lint-css": "file=`git diff --cached --name-only --diff-filter=ACM | grep .css$`;node_modules/.bin/stylelint --config .stylelintrc $file",
|
|
|
"precommit": "npm run lint-js && npm run lint-css"
|
|
|
},
|
|
|
"license": "MIT",
|
...
|
...
|
@@ -22,11 +22,13 @@ |
|
|
"cookie-parser": "^1.4.1",
|
|
|
"express": "^4.13.1",
|
|
|
"express-handlebars": "^3.0.0",
|
|
|
"influxdb-winston": "^1.0.1",
|
|
|
"lodash": "^4.8.2",
|
|
|
"md5": "^2.1.0",
|
|
|
"morgan": "^1.7.0",
|
|
|
"request-promise": "^2.0.1",
|
|
|
"serve-favicon": "^2.3.0"
|
|
|
"serve-favicon": "^2.3.0",
|
|
|
"winston": "^2.2.0"
|
|
|
},
|
|
|
"devDependencies": {
|
|
|
"autoprefixer": "^6.3.6",
|
...
|
...
|
@@ -39,6 +41,8 @@ |
|
|
"gulp-sourcemaps": "^2.0.0-alpha",
|
|
|
"gulp-util": "^3.0.7",
|
|
|
"husky": "^0.11.4",
|
|
|
"mocha": "^2.4.5",
|
|
|
"nodemon": "1.9.2",
|
|
|
"postcss-assets": "^4.0.1",
|
|
|
"postcss-cachebuster": "^0.1.2",
|
|
|
"postcss-calc": "^5.2.1",
|
...
|
...
|
@@ -51,11 +55,12 @@ |
|
|
"postcss-sprites": "^3.1.2",
|
|
|
"postcss-use": "^2.0.2",
|
|
|
"precss": "^1.4.0",
|
|
|
"rewire": "^2.5.1",
|
|
|
"shelljs": "^0.7.0",
|
|
|
"stylelint": "^6.2.2",
|
|
|
"stylelint-config-yoho": "^1.2.0",
|
|
|
"webpack": "^1.13.0",
|
|
|
"webpack-dev-server": "^1.14.1",
|
|
|
"webpack-stream": "^3.1.0",
|
|
|
"shelljs": "^0.7.0"
|
|
|
"webpack-stream": "^3.1.0"
|
|
|
}
|
|
|
} |
...
|
...
|
|