This repository has been archived by the owner on Jan 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
64 lines (64 loc) · 1.77 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
{
"name": "mmf-blog-vue2-pwa-ssr",
"version": "2.0.6",
"private": true,
"description": "MMF个人博客 Vue 服务端渲染版",
"author": "lincenying <lincenying@qq.com>",
"engines": {
"node": ">14.0.0"
},
"scripts": {
"serve": "vue-cli-service ssr:serve",
"build": "vue-cli-service ssr:build",
"ssr:build": "vue-cli-service ssr:build",
"ssr:serve": "vue-cli-service ssr:serve",
"start": "cross-env NODE_ENV=production vue-cli-service ssr:serve --mode production",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix"
},
"dependencies": {
"axios": "^1.6.2",
"fastclick": "^1.0.6",
"js-cookie": "^3.0.5",
"lodash.get": "^4.4.2",
"mavon-editor": "^2.10.4",
"md5": "^2.3.0",
"register-service-worker": "^1.7.2",
"store2": "^2.14.2",
"toastr": "^2.1.4",
"vue": "^2.7.15",
"vue-content-loader": "0.2.3",
"vue-meta": "2.4.0",
"vue-router": "^3.6.5",
"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.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@lincy/eslint-config": "^4.1.1",
"@vue/cli-service": "^4.5.19",
"cookie-parser": "^1.4.6",
"core-js": "3.33.3",
"eslint": "^8.55.0",
"http-proxy-middleware": "^2.0.6",
"lint-staged": "^15.2.0",
"morgan": "^1.10.0",
"node-sass": "8.0.0",
"sass-loader": "^10.4.1",
"sw-precache-webpack-plugin": "^1.0.0",
"typescript": "5.3.2",
"vue-server-renderer": "^2.7.15",
"vue-template-compiler": "^2.7.15",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"eslint --fix"
]
}
}