-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.06 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
{
"name": "mettajs",
"version": "0.0.1",
"description": "",
"type": "module",
"scripts": {
"env:dev": "dotenv -e .env.dev",
"env:prod": "dotenv -e .env.prod",
"dev:server": "bun env:dev -- tsx watch ./src/server | pino-pretty",
"dev:client": "bun env:dev vite",
"dev": "concurrently 'bun dev:server' 'bun dev:client'",
"build": "vite build",
"preview": "NODE_ENV=production tsx ./src/server",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ."
},
"keywords": [],
"author": "",
"devDependencies": {
"@types/node": "^20.12.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"drizzle-kit": "^0.21.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-typescript": "^1.0.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5"
},
"dependencies": {
"@fastify/cookie": "^9.3.1",
"@fastify/middie": "^8.3.1",
"@fastify/session": "^10.9.0",
"@fastify/static": "^7.0.4",
"@tawasukha/rbac": "^0.1.0",
"@trpc/client": "^11.0.0-rc.374",
"@trpc/react-query": "^11.0.0-rc.374",
"@trpc/server": "^11.0.0-rc.374",
"@vitejs/plugin-react": "^4.3.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cross-fetch": "^4.0.0",
"dotenv": "^16.4.5",
"dotenv-cli": "^7.4.2",
"drizzle": "^1.4.0",
"drizzle-orm": "^0.30.10",
"drizzle-zod": "^0.5.1",
"fastify": "^4.27.0",
"lucide-react": "^0.379.0",
"pg": "^8.11.5",
"pino-pretty": "^11.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"superjson": "^2.2.1",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.11.0",
"vike": "^0.4.171",
"vike-react": "^0.4.10",
"vite": "^5.2.11",
"zod": "^3.23.8"
},
"prettier": {
"semi": false
}
}