-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.73 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
94
95
96
97
98
99
{
"name": "vue-ssr-kit",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "yarn && cross-env APP_ENV=development BASE_URL=/ node dev.server",
"dev": "yarn && yarn dev:client && yarn dev:server",
"dev:client": "cross-env APP_ENV=development BASE_URL=/ webpack --config build/webpack.client.config",
"dev:server": "cross-env APP_ENV=development BASE_URL=/ webpack --config build/webpack.server.config",
"staging": "yarn && yarn staging:client && yarn staging:server",
"staging:client": "cross-env APP_ENV=staging BASE_URL=/ webpack --config build/webpack.client.config",
"staging:server": "cross-env APP_ENV=staging BASE_URL=/ webpack --config build/webpack.server.config",
"build": "yarn && yarn build:client && yarn build:server",
"build:client": "cross-env APP_ENV=production BASE_URL=/ webpack --config build/webpack.client.config",
"build:server": "cross-env APP_ENV=production BASE_URL=/ webpack --config build/webpack.server.config",
"lint": "yarn && stylelint --max-warnings 0 \"src/**/*.{vue,html,css,less,scss,sass}\" && eslint --max-warnings 0 \"src/**/*.{js,vue}\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
},
"commit-msg": "echo $HUSKY_GIT_PARAMS"
},
"lint-staged": {
"src/**/*.{vue,html,css,less,scss,sass}": "stylelint --max-warnings 0",
"src/**/*.{js,vue}": "eslint --max-warnings 0",
"build/**/*.js": "eslint --max-warnings 0",
"server/**/*.js": "eslint --max-warnings 0",
"./*.js": "eslint --max-warnings 0"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.12.5",
"axios": "^0.21.0",
"dayjs": "^1.9.6",
"element-ui": "^2.14.1",
"es6-promise": "^4.2.8",
"lodash": "^4.17.20",
"normalize.css": "^8.0.1",
"vue": "^2.6.12",
"vue-router": "^3.4.9"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/eslint-parser": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/plugin-proposal-export-default-from": "^7.12.1",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/plugin-proposal-private-methods": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"autoprefixer": "^10.0.4",
"babel-loader": "^8.2.2",
"babel-plugin-component": "^1.1.1",
"babel-plugin-lodash": "^3.3.4",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.2",
"css-loader": "^5.0.1",
"cssnano": "^4.1.10",
"eslint": "^7.14.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-vue": "^7.1.0",
"eslint-webpack-plugin": "^2.4.1",
"express": "^4.17.1",
"file-loader": "^6.2.0",
"http-proxy-middleware": "^1.0.6",
"husky": "^4.3.0",
"less": "^3.12.2",
"less-loader": "^7.1.0",
"lint-staged": "^10.5.2",
"memory-fs": "^0.5.0",
"mini-css-extract-plugin": "^1.3.1",
"null-loader": "^4.0.1",
"portfinder": "^1.0.28",
"postcss": "^8.1.10",
"postcss-loader": "^4.1.0",
"sass": "^1.29.0",
"sass-loader": "^10.1.0",
"serve-favicon": "^2.5.0",
"style-loader": "^2.0.0",
"stylelint": "^13.8.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-webpack-plugin": "^2.1.1",
"vue-eslint-parser": "^7.1.1",
"vue-loader": "^15.9.5",
"vue-server-renderer": "^2.6.12",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.12",
"webpack": "^4.44.2",
"webpack-bundle-analyzer": "^4.1.0",
"webpack-cli": "^3.3.12",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0",
"webpack-merge": "^5.4.0",
"webpack-node-externals": "^2.5.2"
}
}