-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.14 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
{
"name": "client",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "biome format --write .",
"lint": "biome lint .",
"check": "biome check .",
"prepare": "husky",
"test": "jest --passWithNoTests",
"secure": "node server.js",
"codegen": "graphql-codegen --config codegen.ts",
"codegen:watch": "graphql-codegen --config codegen.ts --watch"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"biome format --write"
]
},
"dependencies": {
"@apollo/client": "^4.0.7",
"@apollo/client-integration-nextjs": "^0.13.2",
"@tailwindcss/postcss": "^4.1.14",
"@types/spotify-web-playback-sdk": "^0.1.19",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^11.11.17",
"graphql": "^16.11.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"lucide-react": "^0.545.0",
"next": "^15.5.4",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-icons": "^5.3.0",
"react-resizable-panels": "^2.1.7",
"rxjs": "^7.8.2",
"server-only": "^0.0.1",
"tailwind-merge": "^3.3.1",
"tailwind-scrollbar-hide": "^4.0.0",
"tailwindcss-animate": "^1.0.7",
"zustand": "^5.0.8"
},
"devDependencies": {
"@biomejs/biome": "^2.2.5",
"@graphql-codegen/cli": "^6.0.0",
"@graphql-codegen/typescript": "^5.0.2",
"@graphql-codegen/typescript-operations": "^5.0.2",
"@graphql-codegen/typescript-react-apollo": "^4.3.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.10",
"@types/lodash": "^4.17.13",
"@types/node": "^20",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.10",
"postcss": "^8",
"tailwindcss": "^4.1.14",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"ts-pattern": "^5.8.0",
"typescript": "^5.9.3"
},
"packageManager": "yarn@4.10.3"
}