-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.36 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
{
"name": "example-tanstack-auth",
"license": "Apache-2.0",
"private": true,
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "vite build",
"dev": "vite",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"depcheck": "npx knip",
"prepack": "tsc --noEmit",
"preview": "vite preview",
"start": "vite",
"test": "playwright test"
},
"dependencies": {
"@auth/core": "^0.40.0",
"@tanstack/react-router": "^1.168.0",
"@tanstack/react-start": "^1.168.0",
"@tanstack/start-storage-context": "^1.167.0",
"@zitadel/tanstack-auth": "^1.1.2",
"openid-client": "^6.6.3",
"react": "^19",
"react-dom": "^19"
},
"devDependencies": {
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^9.38.0",
"@playwright/test": "^1.56.1",
"@tailwindcss/vite": "^4.3.0",
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^6.0.2",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.3.0",
"knip": "^5.64.1",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.8.0",
"tailwindcss": "^4.3.0",
"typescript": "~5.9.2",
"typescript-eslint": "^8.60.0",
"vite": "^8.0.16"
}
}