-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
{
"name": "vue3-ssr",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "nodemon --watch server server/server.js",
"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",
"preview": "cross-env NODE_ENV=production npm run dev"
},
"keywords": [
"vue3 ssr",
"vue ssr"
],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.6.8",
"express": "^4.19.2",
"serve-favicon": "^2.5.0",
"vue": "^3.4.23",
"vue-router": "^4.3.2",
"vue3-lazy-hydration": "^1.2.1",
"vuex": "^4.1.0"
},
"devDependencies": {
"@eslint/js": "^9.1.1",
"@stylistic/eslint-plugin": "^1.7.2",
"@types/eslint": "^8.56.10",
"@vitejs/plugin-vue": "^5.0.4",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.25.0",
"globals": "^15.0.0",
"nodemon": "^3.1.0",
"vite": "^5.2.9"
}
}