-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.96 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.96 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "fan-sync",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"test": "NODE_ENV=test vitest",
"prettier": "npx prettier --write ./",
"prebuild": "prisma generate && prisma db push",
"postinstall": "node fix-spotify-sdk.js",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@firebase/app-types": "^0.9.3",
"@react-email/components": "^0.0.28",
"@react95/core": "^7.0.2",
"@react95/icons": "^2.1.1",
"@sendgrid/mail": "^8.1.4",
"@spotify/web-api-ts-sdk": "^1.2.0",
"@t3-oss/env-nextjs": "^0.11.1",
"@tanstack/react-query": "^5.56.2",
"@trpc/client": "^11.0.0-rc.502",
"@trpc/next": "^11.0.0-rc.730",
"@trpc/react-query": "^11.0.0-rc.502",
"@trpc/server": "^11.0.0-rc.502",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@vercel/analytics": "^1.3.1",
"@xstyled/styled-components": "^3.6.0",
"antd": "^5.1.7",
"chrome-aws-lambda": "^10.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"downloadjs": "^1.4.7",
"firebase": "^11.2.0",
"formidable": "^3.5.1",
"howler": "^2.2.4",
"html-to-image": "^1.11.11",
"lodash": "^4.17.21",
"lucide-react": "^0.454.0",
"maath": "^0.5.2",
"next": "^15.1.6",
"puppeteer-core": "^10.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-fast-marquee": "^1.6.5",
"react-hook-form": "^7.54.2",
"react-icons": "^5.0.1",
"react-qr-code": "^2.0.12",
"react-signature-canvas": "^1.0.6",
"react-toastify": "^10.0.5",
"sharp": "^0.33.4",
"styled-components": "^5.3.5",
"superjson": "^2.2.1",
"tailwind-merge": "^3.0.1",
"tailwindcss-animate": "^1.0.7",
"uuid": "^9.0.1",
"uuid-by-string": "^4.0.0",
"wouter": "^2.10.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@prisma/client": "^6.4.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/downloadjs": "^1.4.6",
"@types/eslint": "^9.6.1",
"@types/formidable": "^3.4.5",
"@types/howler": "^2.2.12",
"@types/lodash": "^4.17.4",
"@types/node": "^22.5.4",
"@types/react-signature-canvas": "^1.0.5",
"@types/styled-components": "^5.1.34",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "^10.4.13",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.13",
"i": "^0.3.7",
"jsdom": "^25.0.1",
"next-fonts": "^1.5.1",
"next-transpile-modules": "^10.0.1",
"npm": "^11.1.0",
"postcss": "^8.4.21",
"prettier": "3.2.5",
"prisma": "^6.4.1",
"tailwindcss": "^3.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"vite-tsconfig-paths": "^5.1.3",
"vitest": "^2.1.9"
}
}