-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.75 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
{
"name": "devforge",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint",
"seed:members": "tsx scripts/seed-members.ts",
"verify:guard": "tsx scripts/verify-firestore-guard.ts",
"test:auth": "tsx scripts/test-auth-flow.ts",
"test:projects": "tsx scripts/test-projects-api.ts",
"test:portal": "tsx scripts/test-portal-apis.ts",
"generate-icons": "tsx scripts/generate-pwa-icons.ts",
"set:photo": "tsx scripts/set-photo.ts"
},
"dependencies": {
"bcrypt": "^6.0.0",
"firebase-admin": "^13.10.0",
"framer-motion": "^11.15.0",
"gray-matter": "^4.0.3",
"jsonwebtoken": "^9.0.3",
"lenis": "^1.3.25",
"lucide-react": "^0.468.0",
"marked": "^18.0.6",
"next": "^16.0.7",
"nodemailer": "^9.0.3",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"reading-time": "^1.5.0",
"recharts": "^3.7.0",
"three": "^0.185.1",
"validator": "^13.15.35",
"web-push": "^3.6.7",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20",
"@types/nodemailer": "^8.0.1",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@types/three": "^0.185.1",
"@types/validator": "^13.15.10",
"@types/web-push": "^3.6.4",
"dotenv": "^17.4.2",
"eslint": "^9",
"eslint-config-next": "^16.0.1",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"tsx": "^4.23.1",
"typescript": "^5"
}
}