forked from wagtail-deprecated/wagtail-react-streamfield
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.91 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
{
"private": true,
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.6",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.4.5",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "8.0.4",
"babel-plugin-transform-react-remove-prop-types": "^0.4.21",
"core-js": "^2.6.5",
"css-loader": "1.0.1",
"custom-event-polyfill": "^1.0.6",
"element-closest": "^3.0.1",
"mini-css-extract-plugin": "0.5.0",
"node-sass": "4.10.0",
"postcss-cli": "^6.1.1",
"postcss-loader": "^3.0.0",
"prop-types": "^15.6.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-redux": "^5.1.1",
"react-streamfield": "^0.9.5",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"sass-loader": "7.1.0",
"webpack": "^4.28.2",
"webpack-cli": "^3.1.2"
},
"browserslist": [
"Firefox ESR",
"ie 11",
"last 2 Chrome versions",
"last 2 ChromeAndroid versions",
"last 2 Edge versions",
"last 1 Firefox version",
"last 2 iOS versions",
"last 2 Safari versions"
],
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
],
"@babel/plugin-proposal-object-rest-spread",
[
"transform-react-remove-prop-types",
{
"mode": "remove",
"removeImport": true,
"ignoreFilenames": [
"node_modules"
]
}
]
]
},
"scripts": {
"build": "webpack --config webpack.config.js --mode production",
"start": "webpack --config webpack.config.js --mode development --watch"
}
}