-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.21 KB
/
package.json
File metadata and controls
45 lines (45 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
{
"name": "workos-custom-auth-example",
"private": true,
"type": "module",
"packageManager": "pnpm@10.27.0",
"engines": {
"node": ">=22"
},
"scripts": {
"dev:server": "tsx watch server.ts",
"dev:client": "vite",
"dev": "tsx watch server.ts & vite & wait",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"lint": "oxlint",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit -p tsconfig.app.json && tsc --noEmit -p tsconfig.server.json",
"check": "pnpm typecheck && pnpm lint && pnpm format:check && pnpm test",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@hono/node-server": "^1.19.12",
"@radix-ui/themes": "^3.3.0",
"@workos-inc/node": "^8.10.0",
"dotenv": "^17.4.0",
"hono": "^4.12.10",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@rolldown/plugin-babel": "^0.2.2",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"oxfmt": "^0.43.0",
"oxlint": "^1.58.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vite": "^8.0.3",
"vitest": "^4.1.2"
}
}