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