-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
96 lines (96 loc) · 2.85 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
87
88
89
90
91
92
93
94
95
96
{
"name": "supa-fly-stack-template",
"private": true,
"sideEffects": false,
"scripts": {
"build": "run-s build:*",
"build:remix": "remix build",
"db:prepare-migration": "prisma migrate dev --create-only --skip-seed",
"db:deploy-migration": "prisma migrate deploy",
"dev": "remix dev",
"format": "prettier --write .",
"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",
"test": "vitest",
"test:cov": "vitest --coverage",
"test:e2e:dev": "start-server-and-test dev http://localhost:3000 'npx cypress open'",
"pretest:e2e:run": "npm run build",
"test:e2e:run": "dotenv -- cross-env PORT=8811 start-server-and-test http://localhost:8811 'npx cypress run'",
"typecheck": "tsc -b && tsc -b cypress",
"validate": "run-p \"test -- --run\" lint typecheck test:e2e:run",
"postinstall": "prisma generate"
},
"dependencies": {
"@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",
"i18next": "^23.7.11",
"i18next-browser-languagedetector": "^7.2.0",
"i18next-fs-backend": "^2.3.1",
"i18next-http-backend": "^2.4.2",
"isbot": "^3.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.5.0",
"react-zorm": "^0.9.0",
"remix-i18next": "^5.4.0",
"tailwind-merge": "^2.1.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@faker-js/faker": "^8.3.1",
"@remix-run/dev": "*",
"@remix-run/eslint-config": "*",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@testing-library/cypress": "^10.0.1",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/i18next-fs-backend": "^1.1.5",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.1.0",
"cross-env": "^7.0.3",
"cypress": "^13.6.1",
"dotenv-cli": "^7.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"happy-dom": "^12.10.3",
"msw": "^2.0.11",
"npm-run-all": "^4.1.5",
"prettier": "3.1.1",
"prisma": "^5.7.1",
"start-server-and-test": "^2.0.3",
"tailwind-scrollbar": "^3.0.5",
"tailwindcss": "^3.4.0",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vite-tsconfig-paths": "^4.2.2",
"vitest": "^1.1.0"
},
"overrides": {
"msw": {
"typescript": "$typescript"
}
},
"engines": {
"node": ">=20"
},
"prisma": {
"schema": "app/database/schema.prisma",
"seed": "tsx app/database/seed.server.ts"
}
}