-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.38 KB
/
package.json
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
{
"name": "sp-oidc",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test:unit": "vitest --dir __tests__",
"test:e2e": "npx playwright test",
"test:e2e-state": " npx playwright codegen localhost:3000 --save-storage=e2e/storageState.json",
"lint": "next lint",
"prettier:format": "prettier --write .",
"prettier:check": "prettier --check .",
"prepare": "husky"
},
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.12",
"@mui/icons-material": "^6.0.0",
"@mui/material": "^6.0.0",
"@mui/material-nextjs": "^6.0.0",
"@types/node": "22.10.1",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"eslint": "9.15.0",
"eslint-config-next": "15.0.3",
"next": "15.0.3",
"next-auth": "^4.24.7",
"react": "18.3.1",
"react-dom": "18.3.1",
"typescript": "5.7.2"
},
"devDependencies": {
"@playwright/test": "1.49.0",
"@testing-library/react": "^16.0.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/ui": "^2.0.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"jsdom": "^25.0.0",
"prettier": "^3.2.5",
"vite-tsconfig-paths": "^5.0.0",
"vitest": "^2.0.0"
},
"packageManager": "pnpm@9.14.2"
}