-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.64 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.64 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-multiple-entry",
"version": "3.0.1",
"description": "webpack multiple entry",
"main": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "better-npm-run build",
"dev": "better-npm-run dev",
"start": "better-npm-run start"
},
"betterScripts": {
"dev": {
"command": "cross-env NODE_ENV=dev webpack --config config/webpack.config"
},
"build": {
"command": "cross-env NODE_ENV=production webpack --config config/webpack.config"
},
"start": {
"command": "webpack-dev-server --config config/webpack.config"
}
},
"author": "givebest",
"license": "ISC",
"bugs": {
"url": "https://github.com/givebest/webpack-multiple-entry/issues"
},
"homepage": "https://github.com/givebest/webpack-multiple-entry#readme",
"devDependencies": {
"art-template-loader": "^1.4.3",
"autoprefixer": "^10.4.13",
"babel-core": "^6.25.0",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.5.2",
"better-npm-run": "^0.0.15",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^5.0.1",
"css-loader": "^6.7.3",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"glob": "^7.1.2",
"happypack": "^4.0.1",
"html-webpack-plugin": "^2.30.1",
"image-webpack-loader": "^8.1.0",
"jquery": ">=3.4.0",
"less": "^4.1.3",
"less-loader": "^4.0.4",
"postcss-loader": "^7.0.2",
"style-loader": "^0.18.2",
"url-loader": "^4.1.1",
"webpack": "^5.76.0",
"webpack-bundle-analyzer": ">=3.6.0",
"webpack-dev-server": "4.11.1"
},
"dependencies": {
"art-template": "^4.13.2"
}
}