-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.13 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
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "dolph-utils",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 5050",
"test": "jest --logHeapUsage --forceExit",
"migrate:make": "npx prisma migrate dev --name",
"migrate:test": "dotenv -e .env.test.local -- prisma migrate deploy",
"migrate:uat": "dotenv -e .env.uat.local -- prisma migrate deploy",
"migrate:prod": "dotenv -e .env.production.local -- prisma migrate deploy",
"migrate:status": "npx prisma migrate status",
"migrate:status:uat": "dotenv -e .env.production.uat -- prisma migrate status",
"migrate:status:prod": "dotenv -e .env.production.local -- prisma migrate status",
"migrate:local": "prisma migrate deploy",
"build": "next build",
"start": "next start",
"lint": "next lint",
"tsc": "tsc",
"db:push": "prisma db push",
"gen": "prisma generate"
},
"dependencies": {
"@auth/prisma-adapter": "^1.0.11",
"@azure/service-bus": "^7.9.1",
"@azure/storage-queue": "^12.15.0",
"@hookform/error-message": "^2.0.1",
"@prisma/client": "^5.11.0",
"@styled-icons/bootstrap": "^10.47.0",
"@styled-icons/feather": "^10.47.0",
"@textea/json-viewer": "^2.16.0",
"@types/jest": "^29.5.2",
"@types/nodemailer": "^6.4.9",
"@types/quill": "^2.0.11",
"@types/ramda": "^0.29.3",
"amqplib": "^0.10.4",
"axios": "^1.2.6",
"azure-storage": "^2.10.7",
"base64url": "^3.0.1",
"cheerio": "^1.0.0-rc.12",
"cloudinary": "^2.2.0",
"clsx": "^1.2.1",
"crypto-js": "^4.1.1",
"dayjs": "^1.11.9",
"dotenv": "^16.3.1",
"fast-memoize": "^2.5.2",
"firebase": "^10.4.0",
"geoip-country": "^4.1.43",
"handlebars": "^4.7.7",
"i18next": "^23.7.11",
"ioredis": "^5.3.2",
"isbot": "^3.6.13",
"jest": "^29.5.0",
"mixpanel-browser": "^2.45.0",
"next": "^14.2.3",
"next-auth": "^4.24.7",
"next-cloudinary": "^6.5.2",
"next-i18next": "^15.1.1",
"node-cron": "^3.0.2",
"node-fetch": "^3.3.0",
"node-mocks-http": "^1.12.2",
"nodemailer": "^6.9.4",
"pino": "^8.11.0",
"prisma": "^5.11.0",
"puppeteer": "^19.7.1",
"qrcode": "^1.5.1",
"ramda": "^0.29.0",
"react": "^18.3.1",
"react-dom": "18.2.0",
"react-hook-form": "^7.45.4",
"react-hot-toast": "^2.4.1",
"react-i18next": "^13.5.0",
"react-query": "^3.39.3",
"request-ip": "^3.3.0",
"sass": "^1.57.1",
"styled-components": "^6.0.7",
"ts-jest": "^29.1.0",
"ua-parser-js": "^1.0.37",
"zod": "^3.23.8",
"zustand": "^4.5.2"
},
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/geoip-country": "^4.0.0",
"@types/mixpanel-browser": "^2.38.1",
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@types/request-ip": "^0.0.41",
"@types/ua-parser-js": "^0.7.39",
"autoprefixer": "^10.4.13",
"dotenv-cli": "^7.3.0",
"eslint": "8.32.0",
"eslint-config-next": "13.1.6",
"postcss": "^8.4.21",
"prettier": "^2.8.3",
"prettier-plugin-tailwindcss": "^0.2.2",
"redux-devtools-extension": "^2.13.9",
"tailwindcss": "^3.3.3",
"typescript": "4.9.4"
}
}