...
|
...
|
@@ -9,14 +9,14 @@ |
|
|
},
|
|
|
"scripts": {
|
|
|
"start": "node app.js",
|
|
|
"dev": "node_modules/.bin/nodemon -e js,hbs -i public/ app.js",
|
|
|
"dev": "nodemon -e js,hbs -i public/ app.js",
|
|
|
"online": "NODE_ENV=\"production\" node app.js",
|
|
|
"debug": "DEBUG=\"express:*\" node_modules/.bin/nodemon -e js,hbs -i public/ app.js",
|
|
|
"lint-js": "./node_modules/.bin/eslint -c .eslintrc --cache --fix .",
|
|
|
"lint-css": "./node_modules/.bin/stylelint --config .stylelintrc public/scss/**/*.css",
|
|
|
"debug": "DEBUG=\"express:*\" nodemon -e js,hbs -i public/ app.js",
|
|
|
"lint-js": "eslint -c .eslintrc --cache --fix .",
|
|
|
"lint-css": "stylelint --config .stylelintrc public/scss/**/*.css",
|
|
|
"precommit": "node lint.js",
|
|
|
"test": "NODE_ENV=test ./node_modules/.bin/nyc ./node_modules/.bin/ava",
|
|
|
"posttest": "./node_modules/.bin/nyc report --reporter=html"
|
|
|
"test": "NODE_ENV=test nyc ./node_modules/.bin/ava",
|
|
|
"posttest": "nyc report --reporter=html"
|
|
|
},
|
|
|
"ava": {
|
|
|
"tap": true,
|
...
|
...
|
|