-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.23 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.23 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "delegate_dashboard",
"version": "0.2.7",
"private": true,
"type": "module",
"scripts": {
"dev": "VITE_GIT_SHA=`git rev-parse --short HEAD` GENERATE_SOURCEMAP=false vite",
"build": "VITE_GIT_SHA=`git rev-parse --short HEAD` tsc && vite build",
"lint": "eslint ./",
"check:type": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"prepare": "husky install",
"prettier": "prettier \"src/**/*.js\" --write"
},
"dependencies": {
"@codemirror/lang-json": "6.0.2",
"@cubing/icons": "^3.0.5",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.7",
"@mui/material": "^7.3.7",
"@mui/styles": "^6.4.8",
"@mui/x-data-grid": "^8.26.0",
"@mui/x-tree-view": "^8.26.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.10",
"@types/react": "19.2.9",
"@types/react-dom": "19.2.3",
"@uiw/react-codemirror": "^4.25.4",
"@vitejs/plugin-react": "^5.1.2",
"@wca/helpers": "^1.1.6",
"clsx": "^2.1.1",
"country-flag-icons": "^1.6.8",
"date-fns": "^4.1.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"export-to-csv": "^1.4.0",
"fuse.js": "^7.1.0",
"history": "^5.3.0",
"jsonpath": "^1.1.1",
"lodash": "^4.17.23",
"lodash.debounce": "^4.0.8",
"material-ui-confirm": "^4.0.0",
"notistack": "^3.0.1",
"prop-types": "^15.8.1",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-flag-icon-css": "^1.0.25",
"react-ga": "^3.3.1",
"react-loading": "^2.0.3",
"react-papaparse": "^4.4.0",
"react-redux": "9.2.0",
"react-router-dom": "^7.13.0",
"react-transition-group": "^4.4.5",
"redux": "5.0.1",
"redux-thunk": "3.1.0",
"reselect": "5.1.1",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-pwa": "^1.2.0",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^6.0.5",
"wca-group-generators": "^0.1.8",
"web-vitals": "^5.1.0"
},
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@eslint/js": "9.39.2",
"@playwright/test": "^1.55.0",
"@testing-library/dom": "^10.4.1",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/lodash": "^4.17.23",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"eslint": "9.39.2",
"eslint-plugin-react-refresh": "^0.4.26",
"globals": "^17.1.0",
"husky": "^9.1.7",
"jsdom": "^27.4.0",
"prettier": "^3.8.1",
"typescript-eslint": "^8.53.1",
"vitest": "^4.0.18"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"semi": true,
"trailingComma": "es5",
"singleQuote": true,
"bracketSpacing": true,
"bracketSameLine": true
}
}