-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 2.22 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
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "run-s \"build:*\"",
"build:css": "npm run generate:css -- --minify",
"build:remix": "remix build",
"dev": "npm run build:css && remix build && run-p \"dev:*\"",
"dev:css": "npm run generate:css -- --watch",
"dev:remix": "remix watch",
"dev:wrangler": "export $(cat .env | xargs) && cross-env NODE_ENV=development wrangler pages dev ./public --compatibility-flag=streams_enable_constructors --persist --local -b STRIPE_PK=$STRIPE_PK -b STRIPE_WEBHOOK_SECRET=$STRIPE_WEBHOOK_SECRET -b ADMIN_PASSWORD=$ADMIN_PASSWORD -b IS_OPEN=$IS_OPEN -b SESSION_SECRET=$SESSION_SECRET",
"generate:css": "npx tailwindcss -m -i ./styles/app.css -o ./app/tailwind.css",
"start": "cross-env NODE_ENV=production npm run dev:wrangler",
"lint": "eslint --fix 'app/**/*.{ts,tsx}'",
"type:check": "tsc --noEmit",
"generate": "drizzle-kit generate:sqlite --schema=app/models/dbSchema.ts",
"stripe": "stripe listen --forward-to localhost:8788/hooks/stripe"
},
"dependencies": {
"@mdi/js": "^7.2.96",
"@mdi/react": "^1.6.1",
"@panzoom/panzoom": "^4.5.1",
"@remix-run/cloudflare": "^1.15.0",
"@remix-run/cloudflare-pages": "^1.15.0",
"@remix-run/react": "^1.15.0",
"classnames": "^2.3.2",
"cross-env": "^7.0.3",
"daisyui": "^2.51.6",
"drizzle-orm": "^0.25.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remix-typedjson": "^0.1.7",
"remix-utils": "^6.1.0",
"stripe": "^12.3.0",
"tailwind-fluid-typography": "^1.3.0",
"uuid": "^9.0.0",
"zod": "^3.23.8",
"zod-form-data": "^2.0.2"
},
"devDependencies": {
"@cazoo/eslint-plugin-eslint": "^2.0.0",
"@cloudflare/workers-types": "^3.19.0",
"@remix-run/dev": "^1.15.0",
"@remix-run/eslint-config": "^1.15.0",
"@tailwindcss/typography": "^0.5.9",
"@types/classnames": "^2.3.1",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.1",
"@types/uuid": "^9.0.1",
"drizzle-kit": "^0.17.6",
"eslint": "^8.39.0",
"eslint-plugin-tailwindcss": "^3.11.0",
"npm-run-all": "^4.1.5",
"tailwindcss": "^3.3.2",
"typescript": "^5.0.4",
"wrangler": "^2.21.0"
},
"engines": {
"node": ">=16.13"
}
}