-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.54 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
{
"name": "chatterbox",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prisma-prototype-dev-push": "dotenv -e .env.development -- prisma db push",
"prisma-prototype-prod-push": "prisma db push",
"prisma-migration-dev": "dotenv -e .env.development -- prisma migrate dev",
"prisma-generate": "prisma generate",
"prisma-migration-deploy": "prisma migrate deploy",
"prisma-db-pull": "dotenv -e .env.development -- prisma db pull"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.325.0",
"@emotion/cache": "^11.10.5",
"@emotion/react": "^11.10.5",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.7",
"@prisma/client": "^4.12.0",
"@types/bcrypt": "^5.0.0",
"axios": "^1.2.6",
"bcrypt": "^5.1.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"dotenv-cli": "^7.2.1",
"iron-session": "^6.3.1",
"next": "^13.1.6",
"next-api-decorators": "^2.0.1",
"path-to-regexp": "^6.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.0",
"react-idle-timer": "^5.6.2",
"socket.io": "^4.6.1",
"socket.io-client": "^4.6.1",
"swr": "^2.0.3"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/react": "^18.0.27",
"eslint": "^8.33.0",
"eslint-config-next": "^13.1.6",
"prisma": "^4.12.0",
"typescript": "^4.9.5"
}
}