-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.19 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
{
"name": "music-store",
"version": "0.1.0",
"private": true,
"license": "SEE LICENSE IN LICENSE.md",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"studio": "prisma studio",
"migrate": "prisma migrate dev",
"generate": "prisma generate"
},
"dependencies": {
"@headlessui/react": "^1.6.6",
"@heroicons/react": "^1.0.6",
"argon2": "^0.28.7",
"boring-avatars": "^1.7.0",
"cookie": "^0.5.0",
"dayjs": "^1.11.4",
"firebase": "^9.9.2",
"jsonwebtoken": "^8.5.1",
"next": "12.2.4",
"react": "18.2.0",
"react-circular-progressbar": "^2.1.0",
"react-dom": "18.2.0",
"react-firebase-hooks": "^5.0.3",
"react-loader-spinner": "^5.1.7-beta.1",
"zod": "^3.18.0"
},
"devDependencies": {
"@types/cookie": "^0.5.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "18.7.1",
"@types/react": "18.0.17",
"eslint": "8.21.0",
"eslint-config-next": "12.2.4",
"prettier": "2.7.1",
"typescript": "4.7.4"
}
}