-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.21 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
{
"name": "workshop-02-react-js-code-splitting",
"version": "1.0.0",
"description": "React JS Code Splitting - Why and How? workshop",
"main": "index.js",
"scripts": {
"start": "./node_modules/.bin/webpack --config ./webpack.config.js && ./node_modules/.bin/serve -s ./public",
"watch": "./node_modules/.bin/webpack --config ./webpack.config.js --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/React-Delhi-NCR/workshop-02-react-js-code-splitting.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/React-Delhi-NCR/workshop-02-react-js-code-splitting/issues"
},
"homepage": "https://github.com/React-Delhi-NCR/workshop-02-react-js-code-splitting#readme",
"dependencies": {
"@reach/router": "^1.2.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-loadable": "^5.5.0",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"serve": "^11.0.2",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.5"
}
}