-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.87 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
50
51
52
53
54
55
56
57
58
{
"name": "website",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"prepare": "husky install",
"test": "vitest",
"test:ui": "vitest --ui",
"e2e": "npx playwright test",
"e2e:ui": "npx playwright test --ui"
},
"lint-staged": {
"*.{ts,tsx,js,cjs}": "eslint"
},
"dependencies": {
"@emotion/react": "11.11.0",
"@emotion/styled": "11.11.0",
"@fontsource-variable/playfair-display": "5.0.18",
"@fontsource/lusitana": "5.0.8",
"@fontsource/noto-sans-jp": "5.0.16",
"@mui/material": "5.14.18",
"dotenv": "^16.3.1",
"iconoir-react": "7.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router-dom": "6.20.0"
},
"devDependencies": {
"@playwright/test": "1.40.0",
"@stylistic/eslint-plugin-ts": "1.4.1",
"@testing-library/jest-dom": "6.1.4",
"@testing-library/react": "14.1.2",
"@testing-library/user-event": "14.5.1",
"@types/node": "20.10.0",
"@types/react": "18.2.37",
"@types/react-dom": "18.2.15",
"@typescript-eslint/eslint-plugin": "6.10.0",
"@typescript-eslint/parser": "6.10.0",
"@vitejs/plugin-react": "4.2.0",
"@vitest/coverage-istanbul": "0.34.6",
"@vitest/ui": "0.34.6",
"eslint": "8.53.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-refresh": "0.4.4",
"husky": "8.0.3",
"jsdom": "22.1.0",
"lint-staged": "15.1.0",
"typescript": "5.2.2",
"vite": "5.4.6",
"vitest": "0.34.6"
}
}