-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.49 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.49 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "hacksu-2021",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"serve": "cross-env NODE_ENV=production bun server/index.js",
"dev": "bun run --watch server/index.ts",
"build": "bunx vite-ssg build -c src/vite.config.js",
"preview": "bunx --bun vite preview",
"update": "git fetch && git pull && bun run build && pm2 restart hacksu"
},
"browser": {
"markdown-it": false
},
"dependencies": {
"@iconify/vue": "^5.0.0",
"@unhead/vue": "^1.11.20",
"@vueuse/head": "^1.3.1",
"body-parser": "^1.20.3",
"cross-env": "^7.0.3",
"express": "^4.21.2",
"express-session": "^1.18.1",
"i": "^0.3.7",
"markdown-it": "^14.1.0",
"multer": "^1.4.5-lts.2",
"passport": "^0.6.0",
"passport-discord": "^0.1.4",
"pg": "^8.16.3",
"remult": "^0.22.12",
"sharp": "^0.34.3",
"vite-ssg": "^0.22.2",
"vue": "^3.5.16",
"vue-advanced-cropper": "^2.8.9",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@types/bun": "latest",
"@types/express": "^5.0.3",
"@types/express-session": "^1.18.2",
"@types/markdown-it": "^14.1.2",
"@types/multer": "^2.0.0",
"@types/passport": "^1.0.17",
"@types/passport-discord": "^0.1.14",
"@vitejs/plugin-vue": "^4.6.2",
"nodemon": "^3.1.10",
"sass": "^1.89.2",
"vite": "^4.5.14"
},
"trustedDependencies": [
"@parcel/watcher",
"sharp"
],
"module": "index.ts",
"peerDependencies": {
"typescript": "^5.0.0"
}
}