-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.22 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.22 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
{
"name": "webpack-optimization-splitchunks",
"version": "1.0.0",
"description": "webpack 4 optimization splitchunks playground",
"main": "index.js",
"scripts": {
"build:entry": "npm run clean && webpack --config webpack.config.entry.js",
"dev:entry": "webpack-dev-server --config webpack.config.entry.js",
"build": "npm run clean && webpack",
"dev": "webpack-dev-server",
"clean": "rimraf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carloluis/webpack-optimization-splitchunks.git"
},
"keywords": [
"webpack",
"webpack-4",
"optimizations",
"splitchunks",
"split-chunks",
"webpack-config"
],
"author": "Carloluis Rodríguez <carloluisr@gmail.com> (https://github.com/carloluis)",
"license": "MIT",
"bugs": {
"url": "https://github.com/carloluis/webpack-optimization-splitchunks/issues"
},
"homepage": "https://github.com/carloluis/webpack-optimization-splitchunks#readme",
"devDependencies": {
"html-webpack-plugin": "webpack-contrib/html-webpack-plugin",
"rimraf": "^2.6.2",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.10",
"webpack-dev-server": "3.1.0"
},
"dependencies": {
"reformat-number": "^1.0.0"
}
}