-
Notifications
You must be signed in to change notification settings - Fork 98
/
package.json
105 lines (105 loc) · 3.36 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
{
"name": "sendou.ink",
"version": "3.0.0",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"deploy": "npm ci && npm run build",
"build": "remix vite:build",
"dev": "remix vite:dev --host",
"dev:prod": "DB_PATH=db-prod.sqlite3 npm run dev",
"dev:ci": "cp .env.example .env && npm run migrate up && npm run dev",
"start": "npm run migrate up && remix-serve ./build/server/index.js",
"migrate": "ley",
"check-translation-jsons": "tsm scripts/check-translation-jsons.ts",
"check-translation-jsons:no-write": "tsm scripts/check-translation-jsons.ts --no-write",
"refresh-prod-db": "tsm scripts/refresh-prod-db.ts && cross-env DB_PATH=db-prod.sqlite3 npm run migrate up",
"biome:check": "npx @biomejs/biome check .",
"biome:fix": "npx @biomejs/biome check --write .",
"biome:fix:unsafe": "npx @biomejs/biome check --write --unsafe .",
"typecheck": "tsc --noEmit",
"test:unit": "cross-env VITE_SITE_DOMAIN=http://localhost:5173 USE_TEST_SEASONS=false vitest run",
"test:e2e": "npx playwright test",
"checks": "npm run biome:fix && npm run test:unit && npm run check-translation-jsons && npm run typecheck"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.688.0",
"@aws-sdk/lib-storage": "^3.688.0",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@epic-web/cachified": "^5.2.0",
"@faker-js/faker": "^9.2.0",
"@headlessui/react": "^1.7.19",
"@hookform/resolvers": "^3.9.1",
"@popperjs/core": "^2.11.8",
"@remix-run/node": "^2.14.0",
"@remix-run/react": "^2.14.0",
"@remix-run/serve": "^2.14.0",
"@tldraw/tldraw": "^3.4.1",
"aws-sdk": "^2.1692.0",
"better-sqlite3": "11.1.2",
"clsx": "^2.1.1",
"compressorjs": "^1.2.1",
"countries-list": "^3.1.1",
"date-fns": "^4.1.0",
"fuse.js": "^7.0.0",
"gray-matter": "^4.0.3",
"i18next": "^23.16.5",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-http-backend": "^2.6.2",
"isbot": "^5.1.17",
"just-camel-case": "^6.2.0",
"just-capitalize": "^3.2.0",
"just-clone": "^6.2.0",
"just-compare": "^2.3.0",
"just-random-integer": "^4.2.0",
"just-shuffle": "^4.2.0",
"kysely": "^0.27.4",
"lru-cache": "^11.0.2",
"markdown-to-jsx": "^7.5.0",
"nanoid": "^5.0.8",
"node-cron": "3.0.3",
"nprogress": "^0.2.0",
"openskill": "^4.1.0",
"react": "^18.3.1",
"react-charts": "^3.0.0-beta.57",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.1.2",
"react-flip-toolkit": "7.2.4",
"react-hook-form": "^7.53.2",
"react-i18next": "^15.1.1",
"react-popper": "^2.3.0",
"react-responsive-masonry": "2.2.0",
"react-use": "^17.5.1",
"react-use-draggable-scroll": "^0.4.7",
"reconnecting-websocket": "^4.4.0",
"remix-auth": "^3.7.0",
"remix-auth-oauth2": "^1.11.2",
"remix-i18next": "^6.4.1",
"remix-utils": "^7.7.0",
"slugify": "^1.6.6",
"swr": "^2.2.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@playwright/test": "^1.48.2",
"@remix-run/dev": "^2.14.0",
"@types/better-sqlite3": "^7.6.11",
"@types/node-cron": "^3.0.11",
"@types/nprogress": "^0.2.3",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-responsive-masonry": "^2.1.3",
"cross-env": "^7.0.3",
"ley": "^0.8.1",
"sql-formatter": "^15.4.5",
"tsm": "^2.3.0",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-tsconfig-paths": "^5.1.1",
"vitest": "^2.1.4"
}
}