-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.21 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
{
"name": "auth",
"version": "0.0.0",
"private": true,
"engines": {
"node": "22.x"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"migrate": "node scripts/migrate.mjs",
"migrate:smoke": "node scripts/migration-smoke.mjs",
"public:hygiene": "node scripts/public-hygiene.mjs",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"test:e2e": "playwright test",
"prepare": "husky"
},
"dependencies": {
"@simplewebauthn/browser": "^13.3.0",
"@simplewebauthn/server": "^13.3.3",
"bullmq": "^6.3.4",
"ioredis": "5.11.1",
"lucide-react": "^1.39.0",
"next": "^16.3.4",
"pg": "^8.23.0",
"prismjs": "^1.30.0",
"react": "^19.2.8",
"react-dom": "^19.2.8"
},
"devDependencies": {
"@playwright/test": "^1.62.1",
"@tailwindcss/postcss": "^4.3.3",
"@types/node": "^22.20.1",
"@types/pg": "^8.23.1",
"@types/prismjs": "^1.26.6",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.5",
"husky": "^9.1.7",
"postcss": "^8.5.10",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3",
"vitest": "^4.1.11"
},
"overrides": {
"postcss": "^8.5.10"
}
}