-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.61 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "acm-website-tanstack",
"private": true,
"type": "module",
"scripts": {
"container:up": "docker compose up -d",
"container:down": "docker compose down -v",
"dev:app": "vite dev",
"dev": "concurrently -n 'api,app' -c blue,green,magenta 'pnpm container:up' 'pnpm dev:app'",
"build": "vite build",
"serve": "vite preview",
"test": "vitest run",
"fmt:check": "oxfmt --check",
"fmt": "oxfmt",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"check": "pnpm run fmt:check && pnpm run lint",
"check:write": "pnpm run fmt && pnpm run lint:fix",
"prepare": "husky",
"email:dev": "email dev --dir=./src/emails --port=2999"
},
"dependencies": {
"@bogeychan/elysia-logger": "^0.1.10",
"@elysiajs/eden": "^1.4.9",
"@elysiajs/openapi": "^1.4.15",
"@fontsource/space-grotesk": "^5.3.0",
"@netlify/vite-plugin-tanstack-start": "^1.3.17",
"@react-email/ui": "^6.9.1",
"@t3-oss/env-core": "^0.13.11",
"@tailwindcss/vite": "^4.3.3",
"@tanstack/react-devtools": "^0.10.9",
"@tanstack/react-form": "^1.33.3",
"@tanstack/react-form-start": "^1.33.3",
"@tanstack/react-query": "^5.101.4",
"@tanstack/react-query-devtools": "^5.101.4",
"@tanstack/react-router": "^1.170.18",
"@tanstack/react-router-devtools": "^1.167.0",
"@tanstack/react-router-ssr-query": "^1.167.1",
"@tanstack/react-start": "^1.168.34",
"@tanstack/router-plugin": "^1.168.23",
"concurrently": "^9.2.4",
"dotenv": "^17.4.2",
"elysia": "^1.4.29",
"nodemailer": "^8.0.11",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"tailwindcss": "^4.3.3",
"vite-tsconfig-paths": "^5.1.4",
"zod": "^4.4.3"
},
"devDependencies": {
"@rollup/plugin-yaml": "^4.1.2",
"@tanstack/devtools-vite": "^0.6.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.3.2",
"@types/node": "^22.20.1",
"@types/nodemailer": "^7.0.12",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@vitejs/plugin-react": "^5.2.0",
"babel-plugin-react-compiler": "^1.0.0",
"baseline-browser-mapping": "^2.11.11",
"husky": "^9.1.7",
"jsdom": "^30.0.0",
"lint-staged": "^16.4.0",
"oxfmt": "^0.40.0",
"oxlint": "^1.77.0",
"oxlint-tsgolint": "^0.17.3",
"react-email": "6.9.1",
"typescript": "^7.0.0",
"vite": "^8.2.0",
"vite-imagetools": "^9.0.2",
"vitest": "^4.1.10",
"web-vitals": "^6.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": "pnpm run lint",
"*": "oxfmt --no-error-on-unmatched-pattern"
}
}