-
Notifications
You must be signed in to change notification settings - Fork 448
/
package.json
72 lines (72 loc) · 1.93 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
{
"name": "chatgpt-web",
"type": "module",
"version": "2.13.3",
"private": false,
"description": "ChatGPT Web",
"author": "ChatGPT Web Contributors <[email protected]>",
"keywords": [
"chatgpt-web",
"chatgpt",
"chatbot",
"vue"
],
"scripts": {
"dev": "vite",
"build": "pnpm run type-check && pnpm run build-only",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"bootstrap": "pnpm install && pnpm run common:prepare",
"common:cleanup": "rimraf node_modules && rimraf pnpm-lock.yaml",
"common:prepare": "husky install"
},
"devDependencies": {
"@antfu/eslint-config": "^0.43.1",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@iconify/vue": "^4.1.2",
"@types/chart.js": "^2.9.37",
"@types/katex": "^0.16.0",
"@types/markdown-it": "^14.1.2",
"@types/markdown-it-link-attributes": "^3.0.1",
"@types/node": "^18.14.6",
"@vitejs/plugin-vue": "^5.1.4",
"@vscode/markdown-it-katex": "^1.1.0",
"@vueuse/core": "^10.11.1",
"autoprefixer": "^10.4.20",
"axios": "^1.6.7",
"chart.js": "^4.3.0",
"dayjs": "^1.11.7",
"eslint": "^8.56.0",
"highlight.js": "^11.10.0",
"html2canvas": "^1.4.1",
"husky": "^8.0.3",
"jwt-decode": "^3.1.2",
"katex": "^0.16.10",
"less": "^4.1.3",
"lint-staged": "^13.1.2",
"markdown-it": "^14.1.0",
"markdown-it-link-attributes": "^4.0.1",
"naive-ui": "^2.40.1",
"pinia": "^2.2.4",
"postcss": "^8.4.47",
"qrcode.vue": "^3.4.1",
"rimraf": "^4.3.0",
"tailwindcss": "^3.4.14",
"typescript": "5.3.3",
"vite": "^5.4.10",
"vue": "^3.5.12",
"vue-chartjs": "^5.3.1",
"vue-i18n": "9.13.1",
"vue-router": "^4.4.5",
"vue-tsc": "^2.1.6"
},
"lint-staged": {
"*.{ts,tsx,vue}": [
"pnpm lint:fix"
]
}
}