-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.07 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.07 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
{
"private": true,
"type": "module",
"scripts": {
"dev": "bun --watch backend/main.ts",
"start": "NODE_ENV=production bun backend/main.ts",
"typecheck": "tsc -b",
"lint": "eslint",
"duplicatecode": "bunx jscpd -i '**/node_modules'",
"weight": "find node_modules | wc -l; du -hs node_modules",
"updatepackages": "bunx npm-check-updates",
"unused": "bunx knip",
"todo": "git grep -rn 'TODO' .",
"all": "bun typecheck && bun lint && bun duplicatecode && bun updatepackages && bun unused && bun todo"
},
"knip": {
"entry": [
"src/scoreboard/main.ts",
"src/self-service/main.ts",
"src/dashboard/main.ts",
"src/index.css"
],
"project": [
"**/*.{ts,tsx}"
],
"ignoreBinaries": [
"du"
]
},
"dependencies": {
"@base-ui/react": "^1.4.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@eslint-react/eslint-plugin": "^4.2.3",
"@eslint/js": "^10.0.1",
"@mui/icons-material": "^7.3.10",
"@mui/material": "^7.3.10",
"@slippi/slippi-js": "^9.0.0",
"@tailwindcss/vite": "^4.2.2",
"@tanstack/eslint-plugin-query": "^5.99.0",
"@tanstack/react-query": "^5.99.0",
"@trpc/client": "^11.16.0",
"@trpc/server": "^11.16.0",
"@trpc/tanstack-react-query": "^11.16.0",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"arktype": "^2.2.0",
"auto-text-size": "^0.2.3",
"eslint": "^10.2.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-de-morgan": "^2.1.1",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-react-compiler": "^19.1.0-rc.2",
"eslint-plugin-react-refresh": "^0.5.2",
"eslint-plugin-unicorn": "^64.0.0",
"motion": "^12.38.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-hot-toast": "^2.6.0",
"superjson": "^2.2.6",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.2",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.2",
"use-debounce": "^10.1.1",
"vite": "^8.0.8",
"winston": "^3.19.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@types/bun": "^1.3.12"
}
}