|
3 | 3 | "version": "1.0.0",
|
4 | 4 | "description": "Boilerplate project for building Isomorphic apps using React and Redux",
|
5 | 5 | "scripts": {
|
6 |
| - "test": "cross-env NODE_ENV=test PORT=8080 MONGO_URL=mongodb://localhost:27017/mern-test ava", |
| 6 | + "test": "cross-env CONFIG=$(pwd)/webpack.config.babel.js BABEL_DISABLE_CACHE=1 NODE_ENV=test PORT=8080 MONGO_URL=mongodb://localhost:27017/mern-test ava", |
7 | 7 | "watch:test": "npm run test -- --watch",
|
8 | 8 | "cover": "nyc npm run test",
|
9 | 9 | "check-coverage": "nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
|
10 |
| - "start": "cross-env NODE_ENV=development nodemon index.js", |
| 10 | + "start": "cross-env BABEL_DISABLE_CACHE=1 NODE_ENV=development nodemon index.js", |
11 | 11 | "start:prod": "cross-env NODE_ENV=production node index.js",
|
12 | 12 | "bs": "npm run clean && npm run build && npm run build:server && npm run start:prod",
|
13 | 13 | "build": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js",
|
14 |
| - "build:server": "webpack --config webpack.config.server.js", |
| 14 | + "build:server": "cross-env NODE_ENV=production webpack --config webpack.config.server.js", |
15 | 15 | "clean": "rimraf dist",
|
16 | 16 | "slate": "rimraf node_modules && npm install",
|
17 | 17 | "lint": "eslint client server"
|
|
54 | 54 | "babel-eslint": "^6.0.4",
|
55 | 55 | "babel-loader": "^6.2.4",
|
56 | 56 | "babel-plugin-css-modules-transform": "^0.1.1",
|
| 57 | + "babel-plugin-webpack-loaders": "^0.5.0", |
57 | 58 | "babel-polyfill": "^6.9.1",
|
58 | 59 | "babel-preset-es2015": "^6.9.0",
|
59 | 60 | "babel-preset-es2015-native-modules": "^6.6.0",
|
|
70 | 71 | "enzyme": "^2.3.0",
|
71 | 72 | "eslint": "^2.11.1",
|
72 | 73 | "eslint-config-airbnb": "^9.0.1",
|
73 |
| - "eslint-import-resolver-webpack": "^0.3.0", |
74 | 74 | "eslint-plugin-ava": "^2.4.0",
|
75 |
| - "eslint-plugin-import": "^1.8.1", |
76 | 75 | "eslint-plugin-jsx-a11y": "^1.3.0",
|
77 | 76 | "eslint-plugin-react": "^5.1.1",
|
78 | 77 | "extract-text-webpack-plugin": "^1.0.1",
|
| 78 | + "fake-url-loader": "^1.0.1", |
79 | 79 | "file-loader": "^0.8.5",
|
80 | 80 | "jsdom": "^9.2.1",
|
81 | 81 | "json-loader": "^0.5.4",
|
|
0 commit comments