-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
31 lines (31 loc) · 925 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-multiple-entry-example-from-cargomedia",
"version": "0.2.0",
"description": "Put away all these easy introduction examples. Only hardcore.",
"repository": {
"type": "git",
"url": "[email protected]:cargomedia/webpack-multiple-entry-example.git"
},
"scripts": {
"build": "npm run build-multiple && npm run build-single",
"build-multiple": "webpack --config ./webpack.config.multiple-page.js",
"build-single": "webpack --config ./webpack.config.single-page.js"
},
"author": "cargomedia",
"dependencies": {
"jquery": "~2.1.0",
"backbone": "~1.1.0"
},
"devDependencies": {
"bower": "^1.3.12",
"bundle-loader": "^0.5.3",
"css-loader": "^0.9.0",
"file-loader": "^0.7.2",
"image-webpack-loader": "0.0.7",
"less-loader": "^2.0.0",
"rimraf": "^2.2.8",
"style-loader": "^0.8.1",
"url-loader": "^0.5.5",
"webpack": "^1.5.3"
}
}