-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.67 KB
/
package.json
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
{
"name": "capstone2",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write src",
"format": "npm run lint && npm run prettier",
"analyze": "ANALYZE=true next build",
"test": "jest",
"test:watch": "jest --watch",
"ts:watch": "tsc -w"
},
"dependencies": {
"@ffmpeg/ffmpeg": "^0.12.6",
"@ffmpeg/util": "^0.12.1",
"@hookform/resolvers": "^3.1.0",
"@prisma/client": "^5.2.0",
"@radix-ui/react-dialog": "1.0.3",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@radix-ui/react-label": "^2.0.1",
"@radix-ui/react-slider": "^1.1.2",
"@radix-ui/react-slot": "^1.0.1",
"@radix-ui/react-toast": "^1.1.4",
"@radix-ui/react-tooltip": "^1.0.6",
"@react-spring/three": "^9.7.3",
"@react-spring/web": "^9.7.3",
"@react-three/drei": "^9.66.0",
"@react-three/fiber": "^8.12.2",
"@react-three/postprocessing": "^2.11.3",
"@tanstack/react-query": "^4.29.7",
"@tanstack/react-query-devtools": "^4.29.7",
"@upstash/redis": "^1.22.0",
"@vercel/analytics": "^1.0.2",
"axios": "^1.4.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"file-saver": "^2.0.5",
"framer-motion": "^10.12.11",
"idb": "^7.1.1",
"immer": "^10.0.2",
"lucide-react": "0.263.1",
"maath": "^0.5.3",
"music-metadata-browser": "^2.5.10",
"next": "13.5.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.43.9",
"react-hotjar": "^6.1.0",
"tailwind-merge": "^1.12.0",
"tailwind-scrollbar-hide": "^1.1.7",
"three": "^0.151.3",
"wavesurfer-multitrack": "^0.2.0",
"zod": "^3.21.4",
"zustand": "^4.3.7"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@next/bundle-analyzer": "^13.4.7",
"@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/file-saver": "^2.0.5",
"@types/jest": "^29.5.4",
"@types/node": "18.16.1",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.1",
"@types/three": "^0.150.2",
"autoprefixer": "10.4.14",
"eslint": "8.39.0",
"eslint-config-next": "13.5.2",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"msw": "^1.3.1",
"postcss": "8.4.23",
"postcss-nesting": "^11.3.0",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"prisma": "^5.2.0",
"tailwind-scrollbar": "^3.0.0",
"tailwindcss": "^3.3.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "4.9.5"
}
}