-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.24 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.24 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
{
"name": "webpack-workshop",
"version": "1.0.0",
"description": "Webpack workshop materials",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:basic": "webpack --config configs/webpack-basic.config.js",
"server:basic": "webpack-dev-server --hot --config configs/webpack-basic.config.js --content-base example/",
"build:css": "webpack -p --config configs/webpack-css.config.js",
"server:css": "webpack-dev-server --hot --config configs/webpack-css.config.js --content-base example/",
"build:babel": "webpack -p --config configs/webpack-babel.config.js",
"server:babel": "webpack-dev-server --hot --config configs/webpack-babel.config.js --content-base example/",
"server:sharp": "webpack-dev-server --hot --content-base example/",
"build:prod": "webpack -p",
"server:plugins": "webpack-dev-server --hot --config configs/webpack-plugins.config.js --content-base example/",
"build:plugins": "webpack -p --config configs/webpack-plugins.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webdev-js-evenings/webpack-workshop.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/webdev-js-evenings/webpack-workshop/issues"
},
"homepage": "https://github.com/webdev-js-evenings/webpack-workshop#readme",
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel": "^6.5.2",
"babel-loader": "^6.2.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.16.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"css-loader": "^0.25.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"image-webpack-loader": "^2.0.0",
"node-sass": "^3.10.1",
"react-hot-loader": "^3.0.0-beta.5",
"react-transform-hmr": "^1.0.4",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.1",
"yargs": "^5.0.0"
},
"dependencies": {
"react": "^15.3.2",
"react-dom": "^15.3.2"
}
}