-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
108 lines (108 loc) · 3.07 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
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
{
"name": "delegate_dashboard",
"version": "0.2.7",
"private": true,
"dependencies": {
"@codemirror/lang-json": "^6.0.1",
"@cubing/icons": "^1.0.6",
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.8.1",
"@material-ui/core": "^4.12.4",
"@material-ui/lab": "^4.0.0-alpha.61",
"@mui/icons-material": "^5.4.2",
"@mui/material": "^5.4.3",
"@mui/styles": "^5.4.2",
"@mui/x-data-grid": "^5.17.3",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^29.1.2",
"@types/node": "^18.8.3",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^5.39.0",
"@uiw/react-codemirror": "^4.21.21",
"@vitejs/plugin-react": "^4.0.4",
"@wca/helpers": "^1.1.5",
"clsx": "^1.1.1",
"country-flag-icons": "^1.5.7",
"date-fns": "^2.30.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"export-to-csv": "^0.2.1",
"fuse.js": "^6.6.2",
"history": "^5.3.0",
"jsonpath": "^1.1.1",
"lodash.debounce": "^4.0.8",
"material-ui-confirm": "^3.0.4",
"notistack": "^1.0.10",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-flag-icon-css": "^1.0.25",
"react-ga": "^3.3.1",
"react-loading": "^2.0.3",
"react-papaparse": "^4.1.0",
"react-redux": "^7.2.6",
"react-router-dom": "^6.2.1",
"react-transition-group": "^4.4.5",
"redux": "^4.1.2",
"redux-thunk": "^2.4.1",
"reselect": "^4.1.6",
"typescript": "*",
"vite": "^4.4.9",
"vite-plugin-pwa": "^0.16.4",
"vite-plugin-svgr": "^3.2.0",
"vite-tsconfig-paths": "^4.2.0",
"wca-group-generators": "^0.1.1",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "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 ./",
"test": "npm run lint",
"prepare": "husky install",
"prettier": "prettier \"src/**/*.js\" --write"
},
"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": {
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^39.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.1",
"prettier": "^2.8.8"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"semi": true,
"trailingComma": "es5",
"singleQuote": true,
"bracketSpacing": true,
"bracketSameLine": true
}
}