-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.66 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
{
"name": "wprm-notify",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3001",
"build": "next build",
"start": "next start",
"lint": "next lint",
"ts-watch": "tsc --watch --noEmit",
"db-migrate": "dotenv -e .env.development.local -- npx prisma migrate dev",
"db-apply": "dotenv -e .env.development.local -- npx prisma db push"
},
"engines": {
"node": "18.x"
},
"dependencies": {
"@heroicons/react": "^2.0.18",
"@hookform/resolvers": "^3.3.2",
"@prisma/client": "^5.7.0",
"@types/node": "20.10.4",
"@types/react": "^18.2.42",
"@types/react-dom": "^18.2.17",
"autoprefixer": "10.4.16",
"eslint": "8.55.0",
"eslint-config-next": "^14.1.0",
"i18next": "^23.7.8",
"iron-session": "^8.0.1",
"javascript-time-ago": "^2.5.9",
"luxon": "^3.4.4",
"nanoid": "^5.0.4",
"next": "^14.1.0",
"next-pwa": "^5.6.0",
"postcss": "8.4.32",
"prisma": "^5.7.0",
"qrcode.react": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.48.2",
"react-input-mask": "^2.0.4",
"react-loading-skeleton": "^3.3.1",
"react-toastify": "^9.1.3",
"sharp": "^0.33.4",
"swr": "^2.2.4",
"tailwindcss": "3.3.6",
"typescript": "5.3.3",
"valtio": "^1.12.1",
"vcf": "^2.1.2",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^4.7.1",
"zod": "^3.22.4",
"zod-i18n-map": "^2.22.0"
},
"devDependencies": {
"@types/luxon": "^3.3.7",
"@types/react-input-mask": "^3.0.5",
"@types/vcf": "^2.0.7",
"dotenv-cli": "^7.3.0",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.9"
}
}