-
- Downloads
add npm start command to hopefully ease dev process
Source diff could not be displayed: it is too large. Options to address this: view the blob.
... | @@ -8,7 +8,9 @@ | ... | @@ -8,7 +8,9 @@ |
"server": "node_modules/.bin/http-server -p 4444", | "server": "node_modules/.bin/http-server -p 4444", | ||
"test": "npm run build && npm run lint && node_modules/.bin/jest", | "test": "npm run build && npm run lint && node_modules/.bin/jest", | ||
"test:watch": "npm test -- --watch", | "test:watch": "npm test -- --watch", | ||
"build": "node_modules/.bin/webpack" | "build": "node_modules/.bin/webpack", | ||
"build:watch": "node_modules/.bin/webpack --watch", | |||
"start": "npm run build && concurrently \"npm run build:watch\" \"npm run server\"" | |||
}, | }, | ||
"license": "Apache-2.0", | "license": "Apache-2.0", | ||
"contributors": [ | "contributors": [ | ||
... | @@ -34,6 +36,7 @@ | ... | @@ -34,6 +36,7 @@ |
"babel-loader": "7.1.4", | "babel-loader": "7.1.4", | ||
"babel-preset-env": "^1.7.0", | "babel-preset-env": "^1.7.0", | ||
"babel-preset-react": "^6.24.1", | "babel-preset-react": "^6.24.1", | ||
"concurrently": "^4.0.1", | |||
"css-loader": "^1.0.0", | "css-loader": "^1.0.0", | ||
"enzyme": "^3.4.4", | "enzyme": "^3.4.4", | ||
"enzyme-adapter-react-16": "^1.2.0", | "enzyme-adapter-react-16": "^1.2.0", | ||
... | ... |
Please register or sign in to comment