-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1.04 KB
/
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
33
34
{
"name": "webpack-dll-example",
"version": "1.0.0",
"description": "Webpack DllPlugin config example",
"main": "index.html",
"scripts": {
"build:dll": "cross-env NODE_ENV=development webpack --config ./webpack.dll.config.js",
"build": "cross-env NODE_ENV=development webpack",
"deploy:dll": "cross-env NODE_ENV=production webpack -p --progress --config ./webpack.dll.config.js",
"deploy": ""
},
"repository": {
"type": "git",
"url": "git+https://github.com/vansosnin/webpack-dll-example.git"
},
"keywords": [
"webpack",
"config",
"dll",
"example"
],
"author": "Ivan Sosnin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vansosnin/webpack-dll-example/issues"
},
"homepage": "https://github.com/vansosnin/webpack-dll-example#readme",
"dependencies": {
"copy-webpack-plugin": "^4.4.1",
"cross-env": "5.1.3",
"lodash": "4.17.5",
"webpack": "3.11.0"
}
}