-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 867 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": "webpack-tutorial",
"version": "1.0.0",
"description": "Webpack Tutorial ================",
"main": "webpack.config.js",
"scripts": {
"start": "webpack-dev-server --content-base build --inline --hot",
"build": "NODE_ENV=production webpack -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/js-channel/webpack-tutorial.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/js-channel/webpack-tutorial/issues"
},
"homepage": "https://github.com/js-channel/webpack-tutorial#readme",
"devDependencies": {
"bootstrap": "^3.3.7",
"css-loader": "^0.25.0",
"node-sass": "^3.10.1",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"ts-loader": "^0.9.5",
"typescript": "^2.0.6",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.2"
}
}