-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.79 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.79 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "avkash",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "NODE_TLS_REJECT_UNAUTHORIZED=0 next dev --turbopack --experimental-https",
"build": "next build",
"start": "next start",
"lint": "next lint",
"tables": "dotenv -e .env.local node db/setup.js db/tables",
"functions": "dotenv -e .env.local node db/setup.js db/functions",
"triggers": "dotenv -e .env.local node db/setup.js db/triggers",
"policies": "dotenv -e .env.local node db/setup.js db/policies",
"seeds": "dotenv -e .env.local node db/setup.js db/seed",
"setup": "npm run tables; npm run seeds; npm run functions;npm run triggers; npm run policies;",
"lint-fix": "next lint --fix",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore .",
"prepare": "husky",
"knip": "knip"
},
"dependencies": {
"@ant-design/cssinjs": "^1.20.0",
"@ant-design/icons": "^5.3.6",
"@ant-design/nextjs-registry": "^1.0.0",
"@elonsteve/calendar": "^1.0.2",
"@emoji-mart/data": "^1.2.1",
"@emoji-mart/react": "^1.1.1",
"@slack/web-api": "^7.3.1",
"@supabase/ssr": "^0.1.0",
"@supabase/supabase-js": "^2.44.4",
"@vercel/analytics": "^1.3.1",
"antd": "^5.16.4",
"capitalize": "^2.0.4",
"date-fns": "^3.6.0",
"dayjs": "^1.11.13",
"emoji-mart": "^5.6.0",
"moment-timezone": "^0.5.45",
"next": "15.2.0",
"nodemailer": "^6.7.2",
"razorpay": "^2.9.4",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-google-recaptcha": "^3.1.0",
"react-icons": "^5.5.0",
"react-world-flags": "^1.6.0",
"swr": "^2.3.3",
"uuid4": "^2.0.3"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/types": "^19.5.0",
"@types/node": "^20.17.27",
"@types/nodemailer": "^6.4.15",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"@types/react-google-recaptcha": "^2.1.9",
"@types/react-world-flags": "^1.4.5",
"@types/uuid4": "^2.0.3",
"autoprefixer": "^10.4.19",
"conventional-changelog-atom": "^5.0.0",
"dotenv-cli": "^7.4.4",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "15.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^9.1.6",
"knip": "^5.46.0",
"lint-staged": "^15.2.10",
"pg": "^8.12.0",
"postcss": "^8.4.40",
"tailwindcss": "^3.4.7",
"typescript": "^5.8.2"
},
"overrides": {
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"@emoji-mart/react": {
"react": "19.0.0"
},
"react-datepicker": {
"react": "19.0.0",
"react-dom": "19.0.0"
}
}
}