-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.12 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
{
"name": "github-profile-studio",
"version": "0.1.0",
"private": true,
"packageManager": "npm@10.9.2",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "npm run dev --workspace @github-profile-studio/web",
"start": "npm run start --workspace @github-profile-studio/web",
"build": "npm run build --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "npm run typecheck --workspaces --if-present",
"db:generate": "prisma generate --schema packages/db/prisma/schema.prisma",
"db:migrate": "prisma migrate dev --schema packages/db/prisma/schema.prisma",
"pages:build": "tsx scripts/build-github-pages.ts",
"acceptance:matrix": "tsx scripts/acceptance-matrix.ts",
"acceptance:report": "tsx scripts/acceptance-report.ts"
},
"dependencies": {
"@auth/prisma-adapter": "^2.7.4",
"@hookform/resolvers": "^3.9.1",
"@octokit/graphql": "^8.1.1",
"@octokit/rest": "^21.0.2",
"@prisma/client": "^6.1.0",
"@resvg/resvg-js": "^2.6.2",
"archiver": "^7.0.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^11.15.0",
"lucide-react": "^0.468.0",
"next": "^15.1.2",
"next-auth": "^5.0.0-beta.25",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.54.2",
"recharts": "^2.15.0",
"satori": "^0.10.14",
"sharp": "^0.33.5",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.24.1",
"zustand": "^5.0.2"
},
"devDependencies": {
"@playwright/test": "^1.49.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/archiver": "^6.0.3",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"autoprefixer": "^10.4.20",
"eslint": "^9.17.0",
"eslint-config-next": "^15.1.2",
"postcss": "^8.4.49",
"prisma": "^6.1.0",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.60.1",
"vitest": "^2.1.8"
}
}