-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.1 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.1 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
{
"name": "panel1",
"version": "0.1.0",
"description": "The Developer-First Billing & Provisioning Platform - Full Stack TypeScript with tRPC",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*",
"plugins/*"
],
"scripts": {
"dev": "turbo run dev --parallel",
"dev:api": "turbo run dev --filter=@panel1/api",
"dev:web": "turbo run dev --filter=@panel1/web",
"build": "turbo run build",
"lint": "turbo run lint",
"test": "turbo run test",
"db:generate": "turbo run db:generate --filter=@panel1/api",
"db:migrate": "turbo run db:migrate --filter=@panel1/api",
"db:studio": "turbo run db:studio --filter=@panel1/api"
},
"keywords": [
"billing",
"provisioning",
"saas",
"hosting",
"open-source",
"typescript",
"trpc",
"drizzle"
],
"author": "Panel1 Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/panel1-org/panel1.git"
},
"bugs": {
"url": "https://github.com/panel1-org/panel1/issues"
},
"homepage": "https://panel1.dev",
"dependencies": {
"@cpanel/api": "^6.0.0",
"@tanstack/react-query": "^4.36.1",
"@trpc/client": "^10.45.0",
"@trpc/react-query": "^10.45.0",
"@trpc/server": "^10.45.0",
"dotenv": "^17.0.0",
"drizzle-kit": "^0.19.13",
"drizzle-orm": "^0.28.6",
"lucide-react": "^0.344.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.20.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"eslint": "^8.55.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"postcss": "^8.4.32",
"tailwindcss": "^3.3.6",
"turbo": "^2.5.4",
"typescript": "^5.5.3",
"vite": "^5.0.8",
"vitest": "^1.1.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"packageManager": "npm@10.0.0"
}