-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
53 lines (53 loc) · 1.64 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
{
"name": "vue3-ts-vite-ssr-starter",
"version": "3.0.0",
"description": "Use vue3 vite typescript eslint SSR vuex vue-router element-plus scss",
"author": "vok123",
"type": "module",
"scripts": {
"dev": "node server",
"build": "npm run build:client && npm run build:server",
"build:client": "vite build --ssrManifest --outDir dist/client",
"build:server": "vite build --ssr src/entry-server.js --outDir dist/server",
"serve": "cross-env NODE_ENV=production node server",
"preview": "npm run build && npm run serve"
},
"dependencies": {
"axios": "^0.21.4",
"element-plus": "^2.3.4",
"pinia": "2.0.22",
"vue": "^3.2.47",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@rollup/plugin-alias": "^4.0.3",
"@rollup/plugin-replace": "^5.0.2",
"@types/node": "^14.18.36",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"@unocss/preset-mini": "^0.50.1",
"@vitejs/plugin-vue": "^4.2.0",
"@vitejs/plugin-vue-jsx": "^3.0.1",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"eslint": "^8.35.0",
"eslint-plugin-vue": "^8.5.0",
"express": "^4.18.2",
"postcss": "^8.4.21",
"rollup-plugin-visualizer": "^5.9.0",
"sass": "1.49.9",
"serve-static": "^1.15.0",
"typescript": "^5.0.4",
"unocss": "^0.50.1",
"unplugin-auto-import": "^0.15.0",
"unplugin-vue-components": "^0.24.0",
"vite": "^4.3.3",
"vite-plugin-eslint": "^1.8.1",
"vue-eslint-parser": "^9.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/vok123/vue3-ts-vite-ssr-starter.git"
},
"license": "MIT"
}