-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.14 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.14 KB
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
{
"name": "react-webpack",
"version": "1.0.0",
"description": "React App Boilerplate",
"main": "index.js",
"scripts": {
"init": "npm install && flow-typed install",
"test": "jest",
"dev": "webpack-dev-server --open --config webpack.config.dev.js",
"dev:hot": "npm run dev -- --hot",
"build": "webpack --config webpack.config.prod.js",
"lint": "eslint ./",
"flow": "flow"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test"
}
},
"author": "Kasper Mróz",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/kaspermroz/react-webpack.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/kaspermroz/react-webpack/issues"
},
"homepage": "https://github.com/kaspermroz/react-webpack#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.0",
"eslint": "^5.13.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-flowtype": "^3.2.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.0.1",
"flow-bin": "^0.92.1",
"flow-typed": "^2.5.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"jest": "^24.1.0",
"jest-dom": "^3.0.2",
"node-sass": "^4.11.0",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"react-axe": "^3.0.2",
"react-testing-library": "^5.5.4",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.29.3",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"prop-types": "^15.6.2",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-hot-loader": "^4.6.5"
}
}