forked from lovefishs/react-router-demo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 914 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
30
31
{
"name": "react-router-demo",
"version": "1.0.0",
"description": "Webpack Code Splitting and React-Router(v4) demo",
"scripts": {
"dev": "webpack-dev-server",
"build": "webpack"
},
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"babel-core": "6.25.0",
"babel-loader": "7.1.1",
"babel-plugin-syntax-dynamic-import": "6.18.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-decorators": "6.24.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.6.0",
"babel-preset-react": "6.24.1",
"html-webpack-plugin": "2.30.0",
"webpack": "3.4.1",
"webpack-dev-server": "2.6.1"
},
"dependencies": {
"prop-types": "15.5.10",
"react": "15.6.1",
"react-dom": "15.6.1",
"react-router-dom": "4.1.2"
}
}