-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
94 lines (94 loc) · 3.25 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
{
"name": "referee-fyi",
"private": true,
"version": "0.5.0",
"type": "module",
"scripts": {
"frontend:dev": "vite --host --port 3000",
"frontend:build": "tsc && vite build",
"lib:dev": "concurrently \"npm --prefix lib/share run dev\" \"npm --prefix lib/consistency run dev\" \"npm --prefix lib/pdf run dev\"",
"lib:build": "concurrently \"npm --prefix lib/share run build\" \"npm --prefix lib/consistency run build\" \"npm --prefix lib/pdf run build\"",
"worker:dev": "npm --prefix worker/sync run dev",
"worker:dev:secure": "npm --prefix worker/sync run dev:secure",
"worker:build": "npm run lib:build && npm --prefix worker/sync run build",
"worker:deploy": "npm run lib:build && npm --prefix worker/sync run deploy",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --fix",
"pages:build": "npm run lib:build && npm run frontend:build",
"dev": "concurrently \"npm run frontend:dev\" \"npm run lib:dev\""
},
"workspaces": [
"lib/*",
"worker/*"
],
"dependencies": {
"@heroicons/react": "^2.1.5",
"@referee-fyi/consistency": "^1.0.0",
"@referee-fyi/share": "^1.0.0",
"@sentry/react": "^8.22.0",
"@sentry/vite-plugin": "^2.21.1",
"@tanstack/query-async-storage-persister": "^5.17.15",
"@tanstack/react-query": "^5.17.15",
"@tanstack/react-query-persist-client": "^5.17.15",
"@tanstack/react-virtual": "^3.10.7",
"@types/uuid": "^9.0.7",
"@use-gesture/react": "^10.3.0",
"csv": "^6.3.5",
"framer-motion": "^11.0.5",
"heroicons": "^2.0.18",
"idb-keyval": "^6.2.1",
"localforage": "^1.10.0",
"match-sorter": "^6.3.1",
"qr-creator": "^1.0.0",
"qr-image": "^3.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.20.0",
"robotevents": "^6.0.3",
"sort-by": "^1.2.0",
"tailwind-merge": "^2.0.0",
"ua-parser-js": "^1.0.39",
"use-resize-observer": "^9.1.0",
"uuid": "^9.0.1",
"zod": "^3.22.4",
"zustand": "^4.5.2"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20231121.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@types/react-window": "^1.8.8",
"@types/ua-parser-js": "^0.7.39",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitejs/plugin-react": "^4.2.0",
"@vitejs/plugin-react-swc": "^3.0.0",
"autoprefixer": "^10.4.14",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"postcss": "^8.4.24",
"prettier": "^3.1.0",
"rollup": "^4.9.1",
"tailwindcss": "^3.4.3",
"typescript": "^5.5.3",
"vite": "^5.0.5",
"vite-plugin-node-polyfills": "^0.16.0",
"vite-plugin-pwa": "^0.17.2",
"vite-plugin-version-mark": "^0.0.10",
"vite-tsconfig-paths": "^4.2.1",
"wrangler": "^3.90.0"
},
"overrides": {
"vite-plugin-node-polyfills": {
"vite": "^5.0.1"
}
}
}