-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.95 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
53
54
55
56
57
58
59
60
61
62
{
"name": "react-league",
"version": "1.0.0",
"private": true,
"type": "module",
"proxy": "http://127.0.0.1:8000",
"dependencies": {
"bootstrap": "^5.3.8",
"pusher-js": "^8.5.0",
"react": "^18.3.1",
"react-bootstrap": "^2.10.10",
"react-data-table-component": "^7.7.0",
"react-dom": "^18.3.1",
"react-flip-move": "^3.0.5",
"react-router-bootstrap": "^0.26.3",
"react-router-dom": "^6.30.4",
"react-toastify": "^8.1.0",
"styled-components": "^5.3.5"
},
"scripts": {
"start": "vite",
"build": "vite build && rm -r ~/Projects/Python/djleague/build && cp -r ./build ~/Projects/Python/djleague",
"ci-build": "npm run lint && tsc && vite build",
"test": "vitest",
"ci-test": "CI=true vitest",
"serve": "vite preview",
"lint": "eslint src --fix",
"format": "prettier . --write"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/react-router-bootstrap": "^0.26.8",
"@typescript-eslint/eslint-plugin": "^8.61.1",
"@typescript-eslint/parser": "^8.61.1",
"@vitejs/plugin-react": "^6.0.2",
"esbuild": "^0.28.1",
"@vitest/eslint-plugin": "^1.6.20",
"eslint": "^9.39.4",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import-x": "^4.0.0",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-testing-library": "^7.16.2",
"globals": "^17.6.0",
"jsdom": "^29.1.1",
"prettier": "^3.8.4",
"typescript": "^5.8.0",
"vite": "^8.0.16",
"vitest": "^4.1.9"
}
}