-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.29 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.29 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
{
"name": "example-react-auth",
"license": "Apache-2.0",
"private": true,
"engines": {
"node": ">=22.0.0"
},
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "vite",
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint .",
"format": "prettier --write .",
"prepack": "npx tsc --noEmit --skipLibCheck --project tsconfig.app.json",
"test": "playwright test"
},
"dependencies": {
"oidc-client-ts": "^3.4.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-oidc-context": "^3.3.0",
"react-router-dom": "^7.12.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^9.33.0",
"@playwright/test": "^1.56.1",
"@tailwindcss/vite": "^4.1.17",
"@types/node": "^22",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@vitejs/plugin-react": "^5.1.0",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.2",
"typescript-eslint": "^8.46.3",
"vite": "^7.3.2"
}
}