-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 916 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 916 Bytes
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
{
"name": "sample-app",
"private": true,
"version": "2.1.0",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config webpack.config.babel.js",
"start": "cross-env NODE_ENV=development webpack-dev-server --config webpack.config.babel.js"
},
"engines": {
"node": ">= 6.0"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@types/node": "^10.11.6",
"@types/react": "^16.4.16",
"cross-env": "^5.2.0",
"cssnano": "^4.1.4",
"eslint-plugin-react": "^7.11.1",
"execa": "^1.0.0",
"html-webpack-plugin": "^3.2.0",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-hot-loader": "^3.1.3",
"rimraf": "^2.6.2",
"typescript": "^3.1.2",
"webpack": "^4.20.2",
"webpack-blocks": "^2.1.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
}
}