-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.82 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
{
"name": "spotify_clone",
"version": "1.0.0",
"private": true,
"prisma": {
"seed": "node prisma/seed.js"
},
"scripts": {
"dev": "next dev",
"test": "jest --verbose --coverage",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"prettier": "prettier --write .",
"prisma": "npx prisma studio",
"prisma:schema": "npx prisma db push",
"seed": "npx prisma db seed"
},
"jest": {
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(js|jsx)$",
"moduleFileExtensions": [
"js",
"jsx"
]
},
"dependencies": {
"@ffmpeg/core": "^0.11.0",
"@ffmpeg/ffmpeg": "^0.11.6",
"@heroicons/react": "^2.0.16",
"@next/font": "13.4.2",
"@prisma/client": "^4.11.0",
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"compressorjs": "^1.1.1",
"cookies-next": "^2.1.1",
"dotenv": "^16.0.3",
"eslint": "8.39.0",
"eslint-config-next": "13.2.4",
"firebase": "^9.17.1",
"gsap": "^3.11.4",
"heroicons": "^2.0.17",
"howler": "^2.2.3",
"jest": "^29.4.2",
"jsmediatags": "^3.9.7",
"mapbox": "^1.0.0-beta10",
"moment": "^2.29.4",
"music-metadata": "^8.1.3",
"next": "13.2.4",
"next-auth": "^4.20.1",
"openai": "^3.2.1",
"prettier": "^2.8.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.8.0",
"react-intl": "^6.3.2",
"react-player": "^2.12.0",
"recoil": "^0.7.7",
"swr": "^2.1.1",
"sass": "^1.62.1",
"values.js": "^2.1.1"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.4.4",
"@svgr/webpack": "^6.5.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"cross-env": "^7.0.3",
"husky": "^8.0.0",
"prisma": "^4.13.0"
}
}