-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.65 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "khe-revengeance",
"type": "module",
"version": "0.0.5",
"description": "Kent Hack Enough is a hackathon happening in April 2024.",
"main": "server/index.ts",
"scripts": {
"dev": "cross-env NODE_ENV=development tsx watch --ignore staff-frontend --ignore public-frontend ./server/index.ts",
"serve-public": "vite serve -c public-frontend/vite.config.js",
"build-public": "cross-env NODE_ENV=production vite-ssg build -c public-frontend/vite.config.js",
"build-staff": "cd staff-frontend && cross-env NODE_ENV=production next build && cross-env NODE_ENV=production next export -o dist",
"production": "cross-env NODE_ENV=production tsx ./server/index.ts",
"acquire-urls": "hostile set 127.0.0.1 localhost.khe.io && hostile set 127.0.0.1 staff.localhost.khe.io"
},
"author": "HacKSU",
"license": "MIT",
"dependencies": {
"@ant-design/icons": "^5.0.1",
"@mdi/font": "^7.2.96",
"@sendgrid/mail": "^7.7.0",
"@types/passport-discord": "^0.1.6",
"@vueuse/core": "^10.9.0",
"@vueuse/head": "^1.1.23",
"antd": "^5.17.0",
"blurhash": "^2.0.5",
"cheerio": "^1.0.0-rc.12",
"connect-mongo": "^5.0.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"csv-parser": "^3.1.0",
"email-addresses": "^5.0.0",
"express": "^4.18.2",
"express-session": "^1.17.3",
"floating-vue": "^5.2.0",
"hostile": "^1.3.3",
"html-to-text": "^9.0.5",
"mongodb": "^5.1.0",
"multer": "^1.4.5-lts.1",
"nanoid": "^5.0.6",
"next": "^13.2.4",
"nuqs": "^1.17.1",
"octokit": "^3.2.0",
"parse-headers": "^2.0.5",
"passport": "^0.6.0",
"passport-discord": "^0.1.4",
"passport-github2": "^0.1.12",
"passport-local": "^1.0.0",
"primeicons": "^6.0.1",
"primevue": "^3.30.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-quill": "^2.0.0",
"recharts": "^2.12.2",
"remult": "0.24.1",
"sass": "^1.60.0",
"serve-static": "^1.15.0",
"sharp": "^0.33.3",
"tsx": "^4.7.0",
"vite-ssg": "^0.22.1",
"vue": "^3.4",
"vue-router": "^4.1.6",
"xp.css": "^0.2.6",
"yaml": "^2.2.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/html-to-text": "^9.0.0",
"@types/multer": "^1.4.7",
"@types/node": "^18.15.10",
"@types/passport": "^1.0.12",
"@types/passport-github2": "^1.2.5",
"@types/passport-local": "^1.0.38",
"@types/react": "^18.3.1",
"@types/serve-static": "^1.15.1",
"@vitejs/plugin-vue": "^4.1.0",
"typescript": "^5.0.2",
"vite": "^4.2.1",
"vite-svg-loader": "^5.1.0"
},
"packageManager": "[email protected]"
}