|
1 | 1 | { |
2 | 2 | "name": "react-perf-devtool", |
3 | | - "version": "3.0.4", |
| 3 | + "version": "3.0.5", |
4 | 4 | "description": "A devtool for inspecting the performance of React Components", |
5 | 5 | "main": "index.js", |
6 | 6 | "files": ["lib/shared", "lib/npm"], |
|
18 | 18 | "babel-plugin-transform-object-rest-spread": "^6.26.0", |
19 | 19 | "babel-preset-env": "^1.6.1", |
20 | 20 | "babel-preset-react": "^6.24.1", |
21 | | - "babel-preset-react-app": "^3.1.0", |
22 | | - "chart.js": "^2.7.1", |
23 | 21 | "husky": "^0.14.3", |
24 | 22 | "jest": "^21.2.1", |
25 | 23 | "lint-staged": "^6.0.0", |
26 | 24 | "prettier": "^1.9.2", |
27 | | - "prop-types": "^15.6.0", |
28 | 25 | "react": "^16.2.0", |
29 | 26 | "react-dom": "^16.2.0", |
30 | 27 | "react-test-renderer": "^16.2.0", |
31 | 28 | "uglifyjs-webpack-plugin": "^1.1.2", |
32 | | - "webpack": "^3.10.0" |
| 29 | + "webpack": "^4.0.1", |
| 30 | + "webpack-cli": "^2.0.9" |
33 | 31 | }, |
34 | 32 | "scripts": { |
35 | 33 | "test": "jest", |
36 | 34 | "build:babel": "rm -rf lib && babel src --out-dir lib", |
37 | 35 | "build:watch": |
38 | | - "rm -rf ./extension/build && NODE_ENV=production ./node_modules/.bin/webpack --watch --config ./webpack/webpack.config.js --progress", |
| 36 | + "rm -rf ./extension/build && NODE_ENV=production ./node_modules/.bin/webpack-cli --watch --config ./webpack/webpack.config.js --progress", |
39 | 37 | "build": |
40 | | - "rm -rf ./extension/build && NODE_ENV=production ./node_modules/.bin/webpack --config ./webpack/webpack.config.js --progress && yarn build:babel", |
| 38 | + "rm -rf ./extension/build && NODE_ENV=production ./node_modules/.bin/webpack-cli --config ./webpack/webpack.config.js --progress && yarn build:babel", |
41 | 39 | "precommit": "lint-staged", |
42 | 40 | "format": |
43 | 41 | "find src -name '*.js' | xargs ./node_modules/.bin/prettier --write --no-semi --single-quote", |
|
0 commit comments