|
| 1 | +{ |
| 2 | + "name": "react-webpack-starter", |
| 3 | + "version": "0.1.0", |
| 4 | + "description": "", |
| 5 | + "main": "index.js", |
| 6 | + "scripts": { |
| 7 | + "start": "webpack-dev-server --config webpack.dev.js --history-api-fallback", |
| 8 | + "build": "webpack --config webpack.prod.js", |
| 9 | + "test": "lint-staged", |
| 10 | + "prettier": "prettier -l --write src/**/*.*", |
| 11 | + "precommit": "lint-staged" |
| 12 | + }, |
| 13 | + "author": "Konrad Kowalski <[email protected]>", |
| 14 | + "license": "ISC", |
| 15 | + "lint-staged": { |
| 16 | + "src/*.*": ["yarn prettier", "git add"] |
| 17 | + }, |
| 18 | + "devDependencies": { |
| 19 | + "@babel/core": "^7.0.0-beta.47", |
| 20 | + "@babel/preset-env": "^7.0.0-beta.47", |
| 21 | + "awesome-typescript-loader": "^5.0.0", |
| 22 | + "babel-eslint": "^8.2.1", |
| 23 | + "babel-loader": "8.0.0-beta.0", |
| 24 | + "babel-plugin-syntax-dynamic-import": "^6.18.0", |
| 25 | + "clean-webpack-plugin": "^0.1.18", |
| 26 | + "css-loader": "^0.28.9", |
| 27 | + "cssnano": "^3.10.0", |
| 28 | + "eslint": "^4.17.0", |
| 29 | + "eslint-config-prettier": "^2.9.0", |
| 30 | + "eslint-loader": "^1.9.0", |
| 31 | + "eslint-plugin-prettier": "^2.6.0", |
| 32 | + "file-loader": "^1.1.6", |
| 33 | + "html-webpack-plugin": "^3.2.0", |
| 34 | + "html-webpack-root-plugin": "^0.10.0", |
| 35 | + "husky": "^0.14.3", |
| 36 | + "lint-staged": "^7.1.0", |
| 37 | + "node-sass": "^4.7.2", |
| 38 | + "postcss-cssnext": "^3.1.0", |
| 39 | + "postcss-flexbugs-fixes": "^3.3.0", |
| 40 | + "postcss-import": "^11.0.0", |
| 41 | + "postcss-loader": "^2.1.0", |
| 42 | + "postcss-scss": "^1.0.3", |
| 43 | + "prettier": "^1.12.1", |
| 44 | + "prettier-webpack-plugin": "^1.0.0", |
| 45 | + "sass-loader": "^6.0.6", |
| 46 | + "style-loader": "^0.20.1", |
| 47 | + "stylelint": "^9.2.0", |
| 48 | + "sugarss": "^1.0.1", |
| 49 | + "ts-loader": "^3.4.0", |
| 50 | + "tslint": "^5.10.0", |
| 51 | + "tslint-config-prettier": "^1.12.0", |
| 52 | + "tslint-eslint-rules": "^5.3.1", |
| 53 | + "typescript": "^2.8.3", |
| 54 | + "uglifyjs-webpack-plugin": "^1.1.8", |
| 55 | + "webpack": "^4.8.3", |
| 56 | + "webpack-cli": "^2.1.3", |
| 57 | + "webpack-dev-server": "^3.1.4", |
| 58 | + "webpack-merge": "^4.1.1" |
| 59 | + }, |
| 60 | + "dependencies": { |
| 61 | + "@types/react": "^16.0.36", |
| 62 | + "@types/react-dom": "^16.0.3", |
| 63 | + "@types/react-router-dom": "^4.2.3", |
| 64 | + "classnames": "^2.2.5", |
| 65 | + "lodash": "^4.17.5", |
| 66 | + "@material-ui/core": "^1.0.0-rc.1", |
| 67 | + "@material-ui/icons": "^1.0.0-rc.0", |
| 68 | + "prop-types": "^15.6.0", |
| 69 | + "react": "^16.3.2", |
| 70 | + "react-dom": "^16.3.2", |
| 71 | + "react-hot-loader": "^3.1.3", |
| 72 | + "react-router": "^4.3.0-rc.3", |
| 73 | + "react-router-dom": "^4.2.2", |
| 74 | + "rxjs": "^5.5.6" |
| 75 | + } |
| 76 | +} |
0 commit comments