-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.63 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
{
"name": "webpack3-react-base",
"version": "1.0.0",
"main": "index.js",
"author": "David Burles",
"license": "MIT",
"scripts": {
"build": "webpack --config webpack.prod.js",
"start": "webpack-dev-server --progress --config webpack.dev.js",
"test": "echo \"No tests specified\""
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-unobtrusive": "^1.2.2",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"prettier": "^1.11.1",
"prop-types": "^15.6.1",
"uglifyjs-webpack-plugin": "^1.2.4",
"webpack": "^4.2.0",
"webpack-cli": "^2.0.13",
"webpack-dev-server": "^3.1.1",
"webpack-merge": "^4.1.2"
},
"dependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0",
"recompose": "^0.26.0"
},
"babel": {
"presets": [
"env",
"react"
],
"plugins": [
"transform-class-properties",
"transform-object-rest-spread"
]
},
"eslintConfig": {
"env": {
"node": true,
"browser": true
},
"parser": "babel-eslint",
"extends": [
"unobtrusive",
"unobtrusive/react"
],
"rules": {
"func-names": "off",
"react/jsx-filename-extension": "off"
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
}
}