forked from Aomferni/chatTests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.34 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
{
"name": "vue3-ts-vite-router-tailwindcss",
"version": "0.0.1",
"author": "LiangINX",
"main": "index.html",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"preview": "vite preview --port 4173",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit",
"e:dev": "yarn build && cp -r electron/. dist && cd dist && yarn && yarn dev",
"e:build": "yarn build && cp -r electron/. dist && cd dist && yarn && yarn build",
"ne:dev": "npm run build && cp -r electron/. dist && cd dist && npm i && npm run dev",
"ne:build": "npm run build && cp -r electron/. dist && cd dist && npm i && npm run build"
},
"dependencies": {
"@icon-park/vue-next": "^1.4.2",
"@tailwindcss/typography": "^0.5.9",
"ant-design-vue": "^3.2.20",
"crypto-js": "^4.1.1",
"highlight.js": "^11.7.0",
"markdown-it": "^13.0.1",
"vditor": "^3.9.3",
"vue": "^3.2.47",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/markdown-it": "^12.2.3",
"@types/node": "^18.15.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/tsconfig": "^0.1.3",
"autoprefixer": "^10.4.12",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vue-tsc": "^1.2.0"
}
}