-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.62 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.62 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
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
{
"name": "biteroulette-web",
"private": true,
"type": "module",
"license": "UNLICENSED",
"version": "0.0.10",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "react-router dev",
"build": "react-router build",
"start": "wrangler dev --local --log-level log",
"preview": "npm run build && wrangler dev --local",
"deploy": "npm run build && wrangler deploy",
"db:gen": "dotenv -e .dev.vars -- drizzle-kit generate",
"db:migrate:local": "wrangler d1 migrations apply DB --local",
"db:migrate:prod": "wrangler d1 migrations apply DB --remote",
"db:reset": "npm run clean:d1 && npm run db:migrate:local",
"db:studio:local": "DB_PATH=$(find .wrangler/state/v3/d1 -name '*.sqlite' | head -n 1) && export DB_PATH && echo \"Connecting to $DB_PATH\" && npx drizzle-kit studio --config drizzle.local.config.ts",
"db:studio:prod": "dotenv -e .dev.vars -- drizzle-kit studio --config drizzle.prod.config.ts",
"pwa:assets": "pwa-assets-generator",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "npm run typegen && tsc -b",
"typegen": "wrangler types && react-router typegen",
"clean": "rm -rf .wrangler dist build node_modules/.cache",
"clean:d1": "rm -rf .wrangler/state/v3/d1",
"postinstall": "npm run typegen",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@icons-pack/react-simple-icons": "13.13.0",
"@react-router/fs-routes": "7.13.2",
"@use-gesture/react": "10.3.1",
"drizzle-orm": "0.45.1",
"isbot": "5.1.36",
"lucide-react": "1.0.1",
"opening_hours": "3.12.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-router": "7.13.2"
},
"devDependencies": {
"@cloudflare/vite-plugin": "1.30.0",
"@eslint/js": "9.39.2",
"@react-router/dev": "7.13.2",
"@tailwindcss/vite": "4.2.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "25.5.0",
"@types/react": "19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/parser": "8.57.2",
"@vite-pwa/assets-generator": "1.0.2",
"@vitest/coverage-v8": "^4.1.1",
"@vitest/ui": "^4.1.1",
"better-sqlite3": "12.8.0",
"dotenv-cli": "^11.0.0",
"drizzle-kit": "^0.31.10",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-better-tailwindcss": "4.3.2",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-compiler": "^19.1.0-rc.2",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-refresh": "0.5.2",
"globals": "17.4.0",
"jsdom": "^29.0.1",
"sharp": "^0.34.5",
"sharp-ico": "^0.1.5",
"tailwindcss": "4.2.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "8.57.2",
"vite": "^7.3.1",
"vite-plugin-checker": "0.12.0",
"vite-plugin-devtools-json": "^1.0.0",
"vite-plugin-pwa": "^1.2.0",
"vite-tsconfig-paths": "6.1.1",
"vitest": "^4.1.1",
"wrangler": "4.76.0"
},
"exports": {
"@persistence": "./src/features/db.server/index.ts",
"@features": "./src/features",
"@routes": "./src/routes",
"@components": "./src/components",
"@config/server": "./src/config.server.ts",
"@config": "./src/config.ts"
},
"overrides": {
"sharp": "$sharp",
"eslint-plugin-react-hooks": {
"zod-validation-error": "^4.0.2"
}
}
}