-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.79 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
59
60
61
62
63
64
65
66
{
"name": "frontend",
"homepage": "https://maxidragon.github.io/TopPlayers",
"version": "0.1.0",
"private": true,
"dependencies": {
"@cubing/icons": "^1.1.2",
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.15.11",
"@mui/material": "^5.15.21",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^15.0.6",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^22.7.4",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@wca/helpers": "^1.1.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.5.4",
"web-vitals": "^3.5.2"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src",
"lint:fix": "eslint --fix --ext .js,.jsx,.ts,.tsx src",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.tsx\"",
"format-check": "prettier --check \"src/**/*.ts\" \"src/**/*.tsx\""
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.0",
"vite": "^4.4.9",
"vite-plugin-checker": "^0.7.2",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-handlebars": "^1.6.0",
"vite-plugin-svgr": "^3.2.0",
"vite-tsconfig-paths": "^4.3.2"
}
}