-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (86 loc) · 3.12 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
{
"name": "zhishuyun-data",
"version": "0.1.0",
"scripts": {
"start": "cross-env NODE_ENV=$npm_config_env vite --host",
"start:local": "npm run start --env=local",
"start:test": "npm run start --env=test",
"start:production": "npm run start --env=production",
"build": "vite build",
"serve": "vite preview",
"lint": "npx eslint src --fix --ext .ts,.tsx,.vue,.js,.jsx",
"prettier": "npx prettier --write .",
"init:https": "npm run init:ca && npm run init:cert",
"init:ca": "npx mkcert create-ca --validity 36500 --key certs/chat.local.zhishuyun.com.ca.key --cert certs/chat.local.zhishuyun.com.ca.crt",
"init:cert": "npx mkcert create-cert --ca-key certs/chat.local.zhishuyun.com.ca.key --ca-cert certs/chat.local.zhishuyun.com.ca.crt --validity 36500 --key certs/chat.local.zhishuyun.com.cert.key --cert certs/chat.local.zhishuyun.com.cert.crt --domains chat.local.zhishuyun.com"
},
"dependencies": {
"@codemirror/lang-java": "^6.0.1",
"@codemirror/lang-javascript": "^6.1.2",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-php": "^6.0.1",
"@codemirror/lang-python": "^6.1.1",
"@codemirror/theme-one-dark": "^6.1.0",
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-brands-svg-icons": "^6.2.1",
"@fortawesome/free-regular-svg-icons": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/vue-fontawesome": "^3.0.2",
"@sentry/tracing": "^7.34.0",
"@sentry/vue": "^7.34.0",
"@types/mustache": "^4.2.2",
"@types/uuid": "^8.3.4",
"axios": "^0.22.0",
"codemirror": "^6.0.1",
"copy-to-clipboard": "^3.3.3",
"dayjs": "^1.10.7",
"element-plus": "^2.2.28",
"github-markdown-css": "^5.1.0",
"highlight.js": "^11.7.0",
"markdown-it": "^13.0.1",
"mustache": "^4.2.0",
"programming-languages-logos": "^0.0.3",
"qrcode.vue": "^3.3.3",
"query-string": "^8.1.0",
"typescript-cookie": "^1.0.3",
"url-join": "^5.0.0",
"uuid": "^8.3.2",
"vue": "^3.2.6",
"vue-codemirror": "^6.1.1",
"vue-i18n": "^9.1.7",
"vue-router": "^4.0.11",
"vuex": "^4.0.2",
"vuex-persistedstate": "^4.0.0"
},
"devDependencies": {
"@rollup/plugin-replace": "^3.0.0",
"@types/lodash": "^4.14.172",
"@types/markdown-it": "^12.2.3",
"@types/node": "^16.7.4",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"@vitejs/plugin-vue": "^2.3.0",
"@vue/compiler-sfc": "^3.0.5",
"autoprefixer": "^10.3.3",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^8.5.0",
"husky": "^7.0.2",
"mkcert": "^1.4.0",
"postcss": "^8.3.6",
"prettier": "^2.6.2",
"rollup-plugin-string": "^3.0.0",
"sass": "^1.38.1",
"tailwindcss": "^2.2.8",
"typescript": "^4.6.3",
"vite": "^2.9.0",
"vue-tsc": "^1.2.0"
}
}