-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
68 lines (68 loc) · 2.03 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
{
"name": "mmf-blog-vue2-pwa-ssr",
"version": "2.0.5",
"description": "MMF个人博客 Vue 服务端渲染版",
"author": "lincenying <[email protected]>",
"private": true,
"scripts": {
"serve": "vue-cli-service ssr:serve",
"build": "vue-cli-service ssr:build",
"lint": "vue-cli-service lint",
"ssr:build": "vue-cli-service ssr:build",
"ssr:serve": "vue-cli-service ssr:serve",
"ssr:start": "cross-env NODE_ENV=production vue-cli-service ssr:serve --mode production"
},
"dependencies": {
"axios": "^0.21.1",
"fastclick": "^1.0.6",
"js-cookie": "^2.2.1",
"lodash.get": "^4.4.2",
"mavon-editor": "^2.9.1",
"md5": "^2.3.0",
"register-service-worker": "^1.7.2",
"store2": "^2.12.0",
"toastr": "^2.1.4",
"typescript": "^4.2.4",
"vue": "^2.6.12",
"vue-content-loader": "0.2.3",
"vue-meta": "2.4.0",
"vue-router": "^3.5.1",
"vuex": "^3.6.2",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"@akryum/vue-cli-plugin-ssr": "^0.6.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"@vue/cli-plugin-babel": "^4.5.12",
"@vue/cli-plugin-eslint": "^4.5.12",
"@vue/cli-plugin-pwa": "^4.5.12",
"@vue/cli-service": "^4.5.12",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.1.0",
"cookie-parser": "^1.4.5",
"core-js": "3.10.1",
"eslint": "^7.24.0",
"eslint-config-lcy-vue": "^3.1.1",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.9.0",
"http-proxy-middleware": "^1.2.0",
"lint-staged": "^10.5.4",
"morgan": "^1.10.0",
"node-sass": "^5.0.0",
"sass-loader": "^10.1.1",
"sw-precache-webpack-plugin": "^1.0.0",
"vue-server-renderer": "^2.6.12",
"vue-template-compiler": "^2.6.12"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint"
]
}
}