forked from peenawat6-prog/Epayroll-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.79 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.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
{
"name": "cafe-saas",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "prisma generate",
"prebuild": "node scripts/validate-env.mjs",
"prestart": "node scripts/validate-env.mjs",
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"verify": "npm run lint && npm run typecheck && npm run build",
"verify:smoke": "node scripts/smoke-test.mjs",
"verify:runtime": "node scripts/verify-runtime.mjs",
"deploy:vercel": "powershell -ExecutionPolicy Bypass -File .\\scripts\\deploy-vercel.ps1",
"mobile:sync": "npx cap sync",
"mobile:sync:android": "npx cap sync android",
"mobile:sync:ios": "npx cap sync ios",
"mobile:open:android": "npx cap open android",
"mobile:open:ios": "npx cap open ios",
"seed:demo": "tsx prisma/seed.ts",
"cleanup:attendance-photos": "tsx scripts/purge-old-attendance-photos.ts",
"lint": "eslint",
"verify:attendance-photo-storage": "tsx scripts/verify-attendance-photo-storage.ts",
"verify:env": "node scripts/validate-env.mjs"
},
"dependencies": {
"@capacitor/android": "^8.3.1",
"@capacitor/cli": "^8.3.1",
"@capacitor/core": "^8.3.1",
"@capacitor/ios": "^8.3.1",
"@prisma/client": "^6.19.2",
"@types/nodemailer": "^8.0.0",
"bcrypt": "^6.0.0",
"next": "16.2.1",
"next-auth": "^4.24.13",
"nodemailer": "^7.0.13",
"react": "19.2.4",
"react-dom": "19.2.4"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.2",
"@types/bcrypt": "^6.0.0",
"@types/node": "25.5.0",
"@types/react": "19.2.14",
"eslint": "^9.37.0",
"eslint-config-next": "16.2.1",
"postcss": "^8.5.8",
"prisma": "^6.19.2",
"tailwindcss": "^4.2.2",
"tsx": "^4.21.0",
"typescript": "6.0.2"
}
}