-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 737 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 737 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-webpack2-typescript-hmr",
"version": "1.0.0",
"main": "index.js",
"repository": {},
"license": "MIT",
"devDependencies": {
"@types/webpack-env": "^1.13.0",
"css-loader": "^0.26.1",
"extract-text-webpack-plugin": "^2.0.0-rc.2",
"html-webpack-plugin": "^2.28.0",
"react-hot-loader": "^3.0.0-beta.6",
"style-loader": "^0.13.1",
"ts-loader": "^2.0.0",
"typescript": "^2.1.5",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0",
"webpack-hot-middleware": "^2.16.1"
},
"scripts": {
"start": "webpack-dev-server"
},
"dependencies": {
"@types/react": "^15.0.6",
"@types/react-dom": "^0.14.22",
"react": "^15.4.2",
"react-dom": "^15.4.2"
}
}