-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 3.08 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
{
"name": "budget-app-2",
"sideEffects": false,
"scripts": {
"postinstall": "npm run generate-clients && patch-package",
"prebuild": "npm run routes-gen",
"predev": "npm run routes-gen",
"build": "remix build",
"dev:remix": "remix watch",
"dev:wrangler": "cross-env NODE_ENV=development npm run wrangler",
"dev": "cross-env NODE_ENV=development npm-run-all build --parallel \"dev:*\"",
"start": "cross-env NODE_ENV=production npm run wrangler",
"typecheck": "tsc",
"wrangler": "wrangler pages dev ./public --local",
"up": "drizzle-kit up:sqlite",
"routes-gen": "routes-gen -o routes.d.ts -d @routes-gen/remix && eslint \"./routes.d.ts\" --fix",
"generate-route-ids": "tsx scripts/generate-route-ids.ts && eslint \"./route-ids.d.ts\" --fix",
"generate-clients": "rm -rf ./generated-sources && openapi --input https://ob.gocardless.com/api/v2/swagger.json --output ./generated-sources/gocardless",
"generate-migrations": "drizzle-kit generate:sqlite --schema=./app/lib/schema.ts",
"list-migrations": "wrangler d1 migrations list budget --local",
"apply-migrations": "wrangler d1 migrations apply budget --local",
"drop-migration": "drizzle-kit drop"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@remix-run/cloudflare": "^2.6.0",
"@remix-run/cloudflare-pages": "^2.6.0",
"@remix-run/react": "^2.6.0",
"@tanstack/react-table": "^8.13.2",
"class-variance-authority": "^0.5.3",
"clsx": "^2.1.0",
"cmdk": "^1.0.0",
"cross-env": "^7.0.3",
"date-fns": "^3.6.0",
"drizzle-orm": "^0.29.3",
"drizzle-zod": "^0.5.1",
"execa": "^8.0.1",
"isbot": "^5.1.0",
"lucide-react": "^0.333.0",
"react": "^18.2.0",
"react-day-picker": "^8.10.0",
"react-dom": "^18.2.0",
"remix-auth": "^3.6.0",
"remix-auth-oauth2": "^1.11.1",
"remix-utils": "^7.5.0",
"tailwind-merge": "^2.2.1",
"tailwindcss-animate": "^1.0.7",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240208.0",
"@remix-run/dev": "^2.6.0",
"@remix-run/eslint-config": "^2.6.0",
"@routes-gen/remix": "^0.3.7",
"@types/react": "^18.2.56",
"@types/react-dom": "^18.2.19",
"@types/react-grid-layout": "^1.3.5",
"@types/uuid": "^9.0.8",
"autoprefixer": "^10.4.18",
"better-sqlite3": "^9.4.1",
"drizzle-kit": "^0.20.14",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"npm-run-all": "^4.1.5",
"openapi-typescript-codegen": "^0.27.0",
"patch-package": "^8.0.0",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"remix-flat-routes": "^0.6.4",
"tailwindcss": "^3.4.1",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"wrangler": "^3.32.0"
},
"engines": {
"node": ">=18.0.0"
}
}