-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (61 loc) · 2.35 KB
/
package.json
File metadata and controls
67 lines (61 loc) · 2.35 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "webpack2-demo",
"version": "1.0.0",
"description": "Demonstrations of Webpack2",
"private": true,
"scripts": {
"server": "nodemon --watch server server/server.js",
"s1": "webpack --config=step-01-with-webpack/webpack.config.js --watch --progress",
"s1:prod": "webpack -p --config=step-01-with-webpack/webpack.config.js",
"s2": "webpack --config=step-02-loaders/webpack.config.js --watch --progress",
"s2:prod": "webpack -p --config=step-02-loaders/webpack.config.js",
"s3": "webpack-dev-server --config=step-03-dev-server/webpack.config.js --inline --watch --progress",
"s4": "webpack-dev-server --config=step-04-plugins/webpack.config.js --inline --watch --progress",
"s4:prod": "cross-env NODE_ENV=production webpack-dev-server --config=step-04-plugins/webpack.config.js --inline --watch --progress",
"s5": "webpack --config=step-05-code-splitting/webpack.config.js --watch --progress",
"s5:prod": "webpack -p --config=step-05-code-splitting/webpack.config.js",
"clean:s1": "rimraf step-01-with-webpack/dist",
"clean:s2": "rimraf step-02-loaders/dist",
"clean:s4:dll": "rimraf step-04-plugins/dll",
"clean:s5": "rimraf step-05-code-splitting/dist"
},
"author": "Vijay Dharap (@dharapvj)",
"license": "MIT",
"devDependencies": {
"add-asset-html-webpack-plugin": "^1.0.2",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-es2015": "^6.22.0",
"chalk": "^1.1.3",
"chance": "^1.0.4",
"cross-env": "^3.2.3",
"css-loader": "^0.26.1",
"eslint": "^3.14.1",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.10.0",
"html-loader": "^0.4.5",
"html-webpack-plugin": "^2.28.0",
"json-server": "^0.9.4",
"morgan": "^1.7.0",
"node-sass": "^4.5.0",
"nodemon": "^1.11.0",
"normalize.css": "^5.0.0",
"rimraf": "^2.5.4",
"sass-loader": "^6.0.2",
"style-loader": "^0.13.1",
"ts-loader": "^2.0.0",
"typescript": "^2.1.5",
"url-loader": "^0.5.7",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.4",
"webpack-dll-bundles-plugin": "^1.0.0-beta.5",
"webpack-merge": "^4.0.0"
},
"dependencies": {
"jquery": "^3.1.1",
"lodash.pick": "^4.4.0",
"rangeslider.js": "^2.3.0"
}
}