-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.63 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "webpack",
"version": "1.0.0",
"description": "readme",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack-dev-server --display-chunks=false --config config/webpack.dev.js",
"build": "webpack --display-modules=false --config config/webpack.pro.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wrngdy/webpack.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/wrngdy/webpack/issues"
},
"homepage": "https://github.com/wrngdy/webpack#readme",
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.4.2",
"html-webpack-plugin": "^4.5.2",
"mini-css-extract-plugin": "^0.9.0",
"style-loader": "^1.1.3",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.3.0",
"diff": "^5.1.0",
"diff2html": "^3.4.45",
"eslint": "^8.45.0",
"file-loader": "^6.2.0",
"highlight.js": "^9.18.5",
"jsondiffpatch": "^0.5.0",
"jsonpath": "^1.1.1",
"less": "^3.13.1",
"less-loader": "^4.1.0",
"moment": "^2.29.4",
"vue": "^2.7.14",
"vue-code-diff": "^1.2.0",
"vue-loader": "^15.10.1",
"vue-router": "^3.6.5",
"vue-template-compiler": "^2.7.14",
"vuex": "^3.6.2",
"webpack-merge": "^5.9.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": ""
}
}