-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
94 lines (94 loc) · 3.18 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
{
"name": "matcha-dating-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "node ./scripts/start-dev.js",
"cron": "node ./scripts/check-inactivity-cron-job.js",
"dev:cron": "npx concurrently -n matcha-app,cron-job -c blue,magenta \"node ./scripts/start-dev.js\" \"node ./scripts/check-inactivity-cron-job.js\"",
"build": "next build",
"start": "npx concurrently -n matcha-app,cron-job -c blue,magenta \"node ./scripts/start-build.js\" \"node ./scripts/check-inactivity-cron-job.js\"",
"lint": "next lint",
"clean": "npx rimraf .swc && npx rimraf .next && npx rimraf node_modules && npx rimraf package-lock.json && npx rimraf coverage",
"c:i": "npm run clean && npm install",
"evaluation": "npm install && node ./scripts/prepare-db.js && npm run build && npm start"
},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.1.4",
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-checkbox": "^1.1.3",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-toast": "^1.2.2",
"@types/bcrypt": "^5.0.2",
"@vercel/blob": "^0.23.4",
"@vercel/postgres": "^0.9.0",
"axios": "^1.7.4",
"bcrypt": "^5.1.1",
"browser-image-compression": "^2.0.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dayjs": "^1.11.11",
"dotenv": "^16.4.5",
"embla-carousel-autoplay": "^8.5.1",
"embla-carousel-react": "^8.2.0",
"file-saver": "^2.0.5",
"framer-motion": "^11.1.7",
"fs": "^0.0.1-security",
"immer": "^10.1.1",
"jose": "^5.6.3",
"lucide-react": "^0.468.0",
"next": "^14.2.13",
"next-intl": "^3.17.2",
"next-themes": "^0.3.0",
"nodemailer": "^6.9.14",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-resizable-panels": "^2.0.19",
"react-select": "^5.8.0",
"sharp": "^0.33.4",
"sheetjs-style": "^0.15.8",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"uuid": "^10.0.0",
"zod": "^3.23.8",
"zustand": "^4.5.2"
},
"devDependencies": {
"@babel/types": "^7.25.4",
"@eslint/js": "^9.12.0",
"@tailwindcss/typography": "^0.5.13",
"@types/bcryptjs": "^2.4.6",
"@types/file-saver": "^2.0.7",
"@types/node": "20.12.12",
"@types/nodemailer": "^6.4.15",
"@types/react": "18.3.2",
"@types/react-dom": "18.3.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"autoprefixer": "10.4.19",
"concurrently": "^9.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.15",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"file-loader": "^6.2.0",
"globals": "^15.11.0",
"husky": "^9.1.3",
"node-cron": "^3.0.3",
"node-loader": "^2.0.0",
"postcss": "8.4.38",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.5.14",
"rimraf": "^6.0.1",
"tailwindcss": "3.4.3",
"ts-node": "^10.9.2",
"typescript": "5.4.5",
"typescript-eslint": "^8.8.1"
}
}