-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.93 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.93 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
59
60
{
"name": "c5-website-v2beth",
"authors": {
"name": [],
"email": [],
"url": "https://github.com/Centennial-College-Computer-Coding-Club/C5-Website-V2BETH",
"website": "https://www.c-5.club"
},
"description": "A opinionated hypermedia-driven architecture balancing developer experience and performance.",
"homepage": "https://the-beth-stack.fly.dev",
"license": "GNU GPL v3.0",
"module": "src/index.ts",
"type": "module",
"scripts": {
"db:push": "bun run drizzle-kit push",
"db:studio": "bun run drizzle-kit studio",
"db:seed": "bun ./src/db/seed.ts",
"db:generate": "bun run drizzle-kit generate",
"db:migrate": "bun run drizzle-kit migrate",
"dev": "concurrently \"bun run --watch src/index.tsx\" \"bun run tw:dev\"",
"prod": "bun run tw && bun run src/index.tsx",
"tw": "bunx tailwindcss -i ./src/styles.css -o ./public/styles.css",
"tw:dev": "bunx tailwindcss -i ./src/styles.css -o ./public/styles.css --watch",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test": "bun playwright test",
"test:report": "bun playwright show-report"
},
"devDependencies": {
"@playwright/test": "^1.46.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.1.0",
"@types/nodemailer": "^6.4.15",
"bun-types": "latest",
"concurrently": "^8.2.2",
"drizzle-kit": "^0.23.2",
"eslint": "^9.8.0",
"tailwindcss": "^3.4.7",
"typed-html": "^3.0.1",
"typescript-eslint": "^8.0.0"
},
"peerDependencies": {
"typescript": "^5.5.4"
},
"dependencies": {
"@elysiajs/html": "1.0",
"@elysiajs/static": "1.0",
"@eslint/js": "^9.8.0",
"@libsql/client": "^0.5.2",
"@otherguy/elysia-logging": "^0.0.17",
"bun": "^1.1.24",
"chalk": "^5.3.0",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.32.2",
"elysia": "latest",
"isomorphic-dompurify": "^2.14.0",
"nodemailer": "^6.9.14",
"update-browserslist-db": "^1.1.0"
}
}