-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.09 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
{
"name": "raidguild-action-items",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "npm@11.7.0",
"engines": {
"node": "20.x"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "mkdir -p .next/standalone/.next && cp -r public .next/standalone/ 2>/dev/null || true && cp -r .next/static .next/standalone/.next/",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"openapi:validate": "swagger-cli validate openapi/action-items.openapi.yaml",
"skill:validate": "python3 /home/skuhl/.codex/skills/.system/skill-creator/scripts/quick_validate.py skills/manage-action-items"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-scroll-area": "^1.2.9",
"@tanstack/react-query": "^5.83.0",
"@tanstack/react-virtual": "^3.13.12",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.2",
"iron-session": "^8.0.4",
"jose": "^6.2.3",
"lucide-react": "^0.462.0",
"next": "^15.3.3",
"postgres": "^3.4.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sonner": "^1.7.4",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@next/eslint-plugin-next": "^15.5.20",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/node": "^22.16.5",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"autoprefixer": "^10.4.21",
"drizzle-kit": "^0.31.4",
"eslint": "^9.32.0",
"eslint-config-next": "^15.5.19",
"globals": "^15.15.0",
"jsdom": "^26.1.0",
"postcss": "^8.5.10",
"swagger-cli": "^4.0.4",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0",
"vitest": "^3.2.4"
},
"overrides": {
"postcss": "^8.5.10"
}
}