-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.23 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.23 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
{
"name": "cerberus",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"ci": "npm run lint && npm run format:check && npm run typecheck && npm run test && npm run build && npm run build:github-action",
"postinstall": "prisma generate",
"db:migrate": "prisma migrate deploy",
"db:push": "prisma db push",
"pull-secret": "node scripts/pull-secret.mjs",
"build:github-action": "ncc build src/github-action/index.ts -o dist/github-action --source-map --license licenses.txt",
"prepare": "husky"
},
"bin": {
"cerberus-pull-secret": "./scripts/pull-secret.mjs"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1020.0",
"@base-ui/react": "^1.3.0",
"@prisma/adapter-pg": "^7.6.0",
"@prisma/client": "^7.6.0",
"@tanstack/react-query": "^5.95.2",
"@trpc/client": "^11.16.0",
"@trpc/next": "^11.16.0",
"@trpc/react-query": "^11.16.0",
"@trpc/server": "^11.16.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.3.1",
"lucide-react": "^1.7.0",
"next": "16.2.1",
"next-auth": "^5.0.0-beta.30",
"next-themes": "^0.4.6",
"pg": "^8.20.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"shadcn": "^4.1.1",
"sonner": "^2.0.7",
"superjson": "^2.2.6",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@actions/core": "^3.0.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/pg": "^8.20.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vercel/ncc": "^0.38.4",
"eslint": "^9",
"eslint-config-next": "16.2.1",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"prisma": "^7.6.0",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.1.2"
},
"lint-staged": {
"*.{js,jsx,mjs,cjs,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,scss,yml,yaml}": "prettier --write"
}
}