-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 835 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 835 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
{
"name": "react-code-splitting",
"version": "1.2.1",
"description": "Code splitting won't be a nightmare anymore",
"main": "./dist/react-code-splitting.min.js",
"repository": "https://github.com/didierfranc/react-code-splitting",
"author": "Didier Franc",
"license": "MIT",
"scripts": {
"build": "webpack",
"start": "webpack-dev-server --open --config example/webpack.config.js"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.22.1",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.0",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"prop-types": "^15.5.8",
"react": "^16.0.0",
"react-dom": "^16.0.0"
}
}