-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 4.23 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "yala-superfly-ddbc",
"private": true,
"sideEffects": false,
"scripts": {
"build": "run-s build:*",
"build:remix": "remix build",
"build:css": "node-sass ./styles -o ./app/styles",
"db:prepare-migration": "prisma migrate dev --create-only --skip-seed",
"db:deploy-migration": "prisma migrate deploy",
"dev": "run-p dev:*",
"dev:css": "cross-env NODE_ENV=development npm run build:css && node-sass -rw ./styles -o ./app/styles",
"dev:remix": "remix dev",
"format": "prettier --write .",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint . --fix",
"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"
},
"prettier": {},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build",
"/postgres-data"
],
"dependencies": {
"@prisma/client": "^5.1.1",
"@radix-ui/react-alert-dialog": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-menubar": "^1.0.3",
"@radix-ui/react-select": "^1.2.2",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@react-oauth/google": "^0.11.1",
"@remix-run/css-bundle": "1.19.2",
"@remix-run/node": "1.19.2",
"@remix-run/react": "1.19.2",
"@remix-run/serve": "1.19.2",
"@supabase/auth-helpers-remix": "^0.2.1",
"@supabase/gotrue-js": "^2.46.1",
"@supabase/supabase-js": "2.31.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"cookie": "^0.5.0",
"date-fns": "^2.30.0",
"i18next": "^23.4.1",
"i18next-browser-languagedetector": "^7.1.0",
"i18next-fs-backend": "^2.1.5",
"i18next-http-backend": "^2.2.1",
"isbot": "^3.6.13",
"isomorphic-dompurify": "^1.8.0",
"isomorphic-fetch": "^3.0.0",
"lodash": "^4.17.21",
"lucide-react": "^0.263.1",
"marked": "^5.1.2",
"node-sass": "^9.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.0.2",
"react-zorm": "^0.9.0",
"remix-i18next": "^5.3.0",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.6",
"zod": "^3.21.4",
"zod-form-data": "^2.0.1"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@remix-run/dev": "1.19.2",
"@remix-run/eslint-config": "1.19.2",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.4",
"@tailwindcss/typography": "^0.5.9",
"@testing-library/cypress": "^9.0.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/i18next-fs-backend": "^1.1.2",
"@types/lodash": "^4.14.196",
"@types/react": "^18.2.17",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.3",
"@vitest/coverage-v8": "^0.33.0",
"cross-env": "^7.0.3",
"cypress": "^12.17.2",
"dotenv-cli": "^7.2.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"happy-dom": "^10.5.2",
"msw": "^1.2.3",
"npm-run-all": "^4.1.5",
"prettier": "3.0.0",
"prettier-plugin-tailwindcss": "^0.4.1",
"prisma": "^5.1.1",
"start-server-and-test": "^2.0.0",
"tailwind-scrollbar": "^3.0.4",
"tailwindcss": "^3.3.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.33.0"
},
"engines": {
"node": ">=16"
},
"prisma": {
"schema": "app/database/schema.prisma",
"seed": "ts-node --require tsconfig-paths/register app/database/seed.server.ts"
}
}