-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.71 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
{
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix build",
"dev": "remix dev --manual -c \"npm run start\"",
"start": "wrangler pages dev --compatibility-date=2023-06-21 ./public",
"lint": "eslint --ext .ts,.tsx app",
"lint:fix": "eslint --ext .ts,.tsx app --fix",
"format": "prettier --check app",
"format:fix": "prettier --write app",
"migrate": "drizzle-kit generate:sqlite --out migrations --schema app/db/schema.ts",
"migrate:run:local": "wrangler d1 migrations apply private-isucon-portal-db --local",
"migrate:run": "wrangler d1 migrations apply private-isucon-portal-db",
"typecheck": "tsc"
},
"dependencies": {
"@cfworker/uuid": "^1.12.4",
"@remix-run/cloudflare": "2.5.1",
"@remix-run/cloudflare-pages": "2.5.1",
"@remix-run/css-bundle": "2.5.1",
"@remix-run/react": "2.5.1",
"@saitamau-maximum/ui": "^0.3.9",
"@tsndr/cloudflare-worker-jwt": "^2.2.2",
"drizzle-orm": "^0.28.5",
"isbot": "^3.6.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recharts": "^2.8.0",
"valibot": "^0.13.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240129.0",
"@remix-run/dev": "2.5.1",
"@remix-run/eslint-config": "2.5.1",
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"better-sqlite3": "^8.5.2",
"clsx": "^2.0.0",
"drizzle-kit": "^0.19.13",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-unused-imports": "^3.0.0",
"prettier": "^3.2.4",
"react-feather": "^2.0.10",
"typescript": "^5.0.4",
"wrangler": "^3.1.1"
},
"engines": {
"node": ">=16.13.0"
}
}