-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.03 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.03 KB
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
{
"name": "webpack2-hmr-typescript",
"version": "1.0.0",
"description": "Webpack HMR typescript template",
"scripts": {
"start": "webpack",
"dev": "webpack-dev-server"
},
"author": "Lukasz Firek <lukasz.firek@o2.pl>",
"license": "MIT",
"dependencies": {
"prop-types": "^15.5.9",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-hot-loader": "^3.0.0-beta.7",
"react-router": "^4.1.1"
},
"devDependencies": {
"@types/node": "^7.0.18",
"@types/prop-types": "^15.5.1",
"@types/react": "^15.0.24",
"@types/react-dom": "^15.5.0",
"@types/react-hot-loader": "^3.0.1",
"@types/react-router": "^4.0.9",
"@types/webpack": "^2.2.15",
"@types/webpack-env": "^1.13.0",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"react-hot-loader": "^3.0.0-beta.7",
"typescript": "^2.3.2",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5",
"awesome-typescript-loader": "^3.1.3"
}
}