-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.09 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
{
"name": "blog",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --port 3000",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"server": "tsx ./src/server/index.ts --port 8000"
},
"dependencies": {
"@types/body-parser": "^1.19.5",
"@types/cookie-parser": "^1.4.0",
"@types/express-session": "^1.17.3",
"@types/jsonwebtoken": "^8.5.1",
"@vue/test-utils": "^2.2.0",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-session": "^1.17.3",
"highlight.js": "^11.9.0",
"jsdom": "^20.0.3",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"luxon": "^3.4.4",
"marked": "^4.0.3",
"pinia": "^2.1.7",
"vitest": "^0.24.3",
"vue": "^3.4.15",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/lodash": "4.14",
"@types/luxon": "^3.4.2",
"@types/marked": "^4.0.3",
"@types/node": "^20.11.10",
"@vitejs/plugin-vue": "^4.5.2",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vue-tsc": "^1.8.25"
}
}