-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
77 lines (77 loc) · 2.21 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
{
"name": "remix-supa-stripe-stack",
"private": true,
"sideEffects": false,
"scripts": {
"build": "run-s build:*",
"build:css": "npm run generate:css -- --minify",
"build:remix": "remix build",
"db:generate-types": "prisma generate",
"db:prepare-migration": "prisma migrate dev --create-only --skip-seed",
"db:deploy-migration": "prisma migrate deploy",
"dev": "remix dev | pino-pretty",
"format": "prettier --write .",
"generate:css": "tailwindcss -o ./app/styles/tailwind.css",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"setup": "run-s setup:db setup:seed",
"setup:db": "prisma generate && prisma migrate deploy",
"setup:seed": "prisma db seed",
"start": "remix-serve build",
"start:ci": "dotenv -- remix-serve build",
"typecheck": "tsc -b",
"validate": "run-p lint typecheck",
"script": "tsx ./scripts/$npm_config_name.ts"
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.1.1",
"@paralleldrive/cuid2": "^2.2.2",
"@prisma/client": "^5.7.1",
"@remix-run/node": "*",
"@remix-run/react": "*",
"@remix-run/serve": "*",
"@supabase/supabase-js": "^2.39.1",
"autoprefixer": "^10.4.16",
"cookie": "^0.6.0",
"country-to-currency": "^1.1.0",
"intl-parse-accept-language": "^1.0.0",
"isbot": "^3.7.1",
"pino": "^8.17.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-zorm": "^0.9.0",
"remix-utils": "^7.4.0",
"stripe": "^11.18.0",
"tailwind-merge": "^2.1.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@remix-run/dev": "*",
"@remix-run/eslint-config": "*",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"cross-env": "^7.0.3",
"dotenv-cli": "^7.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"npm-run-all": "^4.1.5",
"pino-pretty": "^10.3.0",
"prettier": "3.1.1",
"prisma": "^5.7.1",
"tailwind-scrollbar": "^3.0.5",
"tailwindcss": "^3.4.0",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18"
},
"prisma": {
"schema": "app/database/schema.prisma",
"seed": "tsx scripts/_seed.ts"
}
}