-
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.63 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.63 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
{
"name": "postage",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"typecheck": "tsc",
"build": "remix build",
"dev": "remix dev --manual -c \"bun start\"",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"btcpay:generate": "openapi-typescript ./btcpay.json -o ./app/types/btcpay.d.ts",
"start": "wrangler pages dev -k cache=postage --r2 storage=postage --d1 DB=postage --compatibility-date=2023-06-21 ./public",
"pages:deploy": "bun run build && wrangler pages deploy ./public",
"migrate:clean": "rm -fr migrations .wrangler/state/v3/d1 && bun run migrate:generate && bun run migrate",
"migrate:generate": "drizzle-kit generate:sqlite",
"migrate": "wrangler d1 migrations apply postage --local",
"migrate:remote": "wrangler d1 migrations apply postage",
"migrate:preview": "wrangler d1 migrations apply postage --preview"
},
"dependencies": {
"@easypost/api": "^7.0.0",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@remix-run/cloudflare": "^2.5.0",
"@remix-run/cloudflare-pages": "^2.5.0",
"@remix-run/css-bundle": "^2.5.0",
"@remix-run/react": "^2.5.0",
"@types/pdfkit": "^0.13.3",
"base-convert-int-array": "^1.0.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"date-fns": "^3.2.0",
"drizzle-orm": "^0.29.3",
"isbot": "^4.3.0",
"lodash": "^4.17.21",
"lucide-react": "^0.309.0",
"openapi-fetch": "^0.8.2",
"pdf-lib": "^1.17.1",
"pdfkit": "^0.14.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^2.2.0",
"tailwindcss": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.22.4"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20230518.0",
"@remix-run/dev": "^2.4.0",
"@total-typescript/ts-reset": "^0.5.1",
"@types/lodash": "^4.14.202",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"drizzle-kit": "^0.20.7",
"eslint": "^8.38.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"openapi-typescript": "^6.7.3",
"prettier": "^3.1.1",
"typescript": "^5.1.0",
"wrangler": "3.8.0"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "yarn@4.0.2"
}