forked from angloc/wagtail-reacttaxonomy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 907 Bytes
/
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
{
"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",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "8.0.4",
"prop-types": "^15.7.2",
"react-dom": "^16.9.0",
"react-jss": "^10.3.0",
"react": "^16.9.0",
"webpack-cli": "^3.1.2",
"webpack": "^4.28.2"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"scripts": {
"build": "webpack --config webpack.config.js --mode production",
"start": "webpack --config webpack.config.js --mode development --watch"
}
}