forked from krausest/ts-webpack-hmr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 829 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
32
{
"name": "ts-webpack-hmr",
"version": "1.0.0",
"description": "Example for typescript and webpack with hot module replacement",
"scripts": {
"build-dev-server": "webpack-dev-server -w --hot --inline --config webpack.config.js --host 0.0.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/krausest/ts-webpack-hmr"
},
"keywords": [
"webpack",
"hot module replacement",
"hmr",
"typescript",
""
],
"license": "Apache-2.0",
"dependencies": {},
"devDependencies": {
"@types/webpack-env": "^1.13.0",
"awesome-typescript-loader": "^3.2.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"loglevel": "^1.4.1",
"typescript": "^2.4.2",
"webpack": "^3.3.0",
"webpack-dev-server": "^2.6.0"
}
}