-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.58 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "xproj-track",
"version": "0.0.1",
"description": "node",
"main": "bundle/main.bundle.js",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "NODE_ENV=development webpack --config build/webpack.config.js",
"analysis": "NODE_ACTION=analysis npm run build",
"precommit": "lint-staged",
"eslint": "eslint --ext .js,.vue src",
"serve": "webpack-dev-server --open",
"serve-pro": "webpack-dev-server --config build/webpack.argv.config.js --env production",
"serve-dev": "webpack-dev-server --config build/webpack.argv.config.js --env development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZhangRuyi0528/webpack-demo1.git"
},
"keywords": [
"node",
"npm",
"webpack"
],
"author": "zry",
"license": "ISC",
"bugs": {
"url": "https://github.com/ZhangRuyi0528/webpack-demo1/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"homepage": "https://github.com/ZhangRuyi0528/webpack-demo1#readme",
"dependencies": {
"babel-preset-es2015": "^6.24.1",
"echarts": "^4.1.0",
"element-ui": "^2.4.0",
"express": "^4.16.2",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"jquery": "^3.4.1",
"node-sass": "^4.9.0",
"sass-loader": "^7.0.3",
"url-loader": "^1.1.2",
"vue": "^2.5.16",
"vue-loader": "^14.2.0",
"vue-resource": "^1.5.1",
"vue-router": "^3.0.6",
"vue-sticky": "^3.3.4",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^0.28.11",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-eslint": "^5.0.1",
"eslint-plugin-vue": "^5.2.3",
"essential": "^0.0.1",
"file-loader": "^1.1.11",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-tags-plugin": "^2.0.15",
"husky": "^2.7.0",
"lint-staged": "^8.2.1",
"style-loader": "^0.21.0",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-merge": "^5.7.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged && npm run eslint"
}
},
"lint-staged": {
"*.{js,vue}": [
"eslint",
"git add"
]
}
}