-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
39 lines (39 loc) · 891 Bytes
/
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
{
"name": "spotify-os-proj",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"bufferutil": "^4.0.8",
"dotenv": "^16.4.5",
"next": "^14.2.17",
"pg": "^8.11.3",
"postgres": "^3.4.3",
"react": "^18",
"react-dom": "^18",
"react-toastify": "^10.0.6",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"utf-8-validate": "^6.0.3",
"uuid": "^11.0.3",
"ws": "^8.16.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"postcss": "^8",
"tailwindcss": "^3.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.0-dev.20240411"
}
}