-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.41 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.41 KB
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
{
"name": "bozupol-web",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"dev:ssr": "cross-env NODE_ENV=development node server",
"pro:ssr": "cross-env NODE_ENV=production node server",
"build:client": "vite build --outDir dist/client --ssrManifest",
"build:server": "vite build --outDir dist/server --ssr src/entry-server.ts",
"build:ssr": "npm run build:client && npm run build:server"
},
"dependencies": {
"axios": "^1.2.1",
"element-plus": "^2.2.26",
"express": "^4.18.2",
"nuxt3": "^3.0.1-rc.0-27857531.faf2607",
"vue": "^3.2.41",
"vue-i18n": "^9.3.0-beta.10",
"vue-router": "^4.0.13",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"@types/node": "^18.11.11",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@vitejs/plugin-vue": "^3.2.0",
"cross-env": "^7.0.3",
"eslint": "^8.29.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.8.0",
"sass": "^1.56.2",
"typescript": "^4.9.4",
"unplugin-auto-import": "^0.12.0",
"unplugin-vue-components": "^0.22.11",
"vite": "^3.2.3",
"vite-plugin-compression": "^0.5.1",
"vue-tsc": "^1.0.9",
"vuex": "^4.0.2"
}
}