-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.32 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
77
78
79
80
{
"name": "react-boilerplate",
"version": "1.1.0",
"description": "Boilerplate for fresh React application",
"main": "src/index.js",
"scripts": {
"build": "webpack",
"build:local": "webpack --env.local",
"build:vis": "webpack --env.visualize",
"build:local:vis": "webpack --env.local --env.visualize",
"dev:build": "webpack --mode development",
"dev:build:vis": "webpack --mode development --env.visualize",
"dev:start": "webpack-dev-server",
"dev:start:vis": "webpack-dev-server --env.visualize",
"setup": "node ./src/setup.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cmccormack/react-boilerplate.git"
},
"keywords": [
"React",
"Boilerplate",
"Webpack",
"Babel",
"eslint",
"prettier"
],
"author": "Christopher McCormack https://mackville.net",
"license": "MIT",
"bugs": {
"url": "https://github.com/cmccormack/react-boilerplate/issues"
},
"homepage": "https://github.com/cmccormack/react-boilerplate#readme",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.3.4",
"babel-loader": "^8.0.5",
"babel-preset-stage-2": "^6.24.1",
"clean-webpack-plugin": "^1.0.1",
"compression-webpack-plugin": "^2.0.0",
"css-loader": "^2.1.0",
"eslint": "^5.15.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"image-webpack-loader": "^4.6.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"sass-loader": "^7.1.0",
"shelljs": "^0.8.3",
"style-loader": "^0.23.1",
"webpack": "^4.29.6",
"webpack-bundle-analyzer": "^3.1.0",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
},
"dependencies": {
"chalk": "^2.4.2",
"classnames": "^2.2.6",
"prop-types": "^15.7.2",
"react": "^16.8.3",
"react-dom": "^16.8.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}