diff options
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/package.json b/package.json index b602d8d..e0a47fd 100644 --- a/package.json +++ b/package.json @@ -6,27 +6,31 @@ "scripts": { "start": "node ./src/server/bin/www", "build": "webpack -p", - "build:dev": "webpack --watch", + "build:dev": "webpack -wd", "test": "jest", - "test:dev": "jest --watch" + "test:dev": "jest --watch", + "lint": "eslint . --ignore-pattern src/client/static --ignore-pattern node_modules", + "lint:fix": "eslint . --ignore-pattern src/client/static --ignore-pattern node_modules --fix" }, "jest": { "transform": { - "^.+\\.jsx?$": "babel-jest" + "^.+\\.js$": "babel-jest" } }, "dependencies": { "axios": "^0.17.1", + "babel-polyfill": "^6.26.0", "body-parser": "^1.16.0", "cheerio": "^0.22.0", "classnames": "^2.2.5", "compression": "^1.6.2", "dompurify": "^1.0.3", "eslint": "^4.14.0", - "express": "^4.13.4", + "express": "^4.16.3", "express-handlebars": "^3.0.0", "fuzzy-search": "^2.0.1", "iconv-lite": "^0.4.17", + "jsdom": "^11.6.2", "left-pad": "^1.1.1", "lodash": "^4.15.0", "moment": "^2.20.1", @@ -40,8 +44,8 @@ "react-redux": "^5.0.6", "react-router-dom": "^4.2.2", "redux": "^3.7.2", - "redux-logger": "^3.0.6", - "rmwc": "^1.2.0" + "rmwc": "^1.2.0", + "whatwg-fetch": "^2.0.4" }, "devDependencies": { "babel-core": "^6.26.0", @@ -60,6 +64,7 @@ "jest": "^21.2.1", "node-sass": "^4.7.2", "sass-loader": "^6.0.7", + "style-loader": "^0.20.3", "webpack": "^3.5.6" }, "author": "Noah Loomans <noahloomans@gmail.com>", |