-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
132 lines (132 loc) · 4.77 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
127
128
129
130
131
132
{
"scripts": {
"deploy": "flyctl deploy --config ./fly.production.toml",
"staging": "flyctl deploy --config ./fly.staging.toml",
"generate": "npx prisma generate",
"setup": "prisma generate && prisma migrate deploy",
"styles": " npx tailwindcss -i ./app/tailwind.css -o ./app/output.css --watch",
"build": "find ./ -name \".DS_Store\" -print -delete; remix build --sourcemap && sentry-upload-sourcemaps --org dj-scruggs --project trybe --sourcemap",
"dev": "find ./ -name \".DS_Store\" -print -delete; dotenv -e .env.development -- remix dev",
"start": "NODE_OPTIONS='--import ./instrumentation.server.mjs' remix-serve ./build/index.js",
"pretest": "npm run db:up && ./scripts/wait-for-db.sh && dotenv -e .env.test -- npx prisma migrate deploy",
"test": "npm run db:up && ./scripts/wait-for-db.sh && dotenv -e .env.test -- vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"coverage": "vitest run --coverage",
"typecheck": "tsc",
"db:up": "docker compose up -d db",
"db:down": "docker compose down db",
"pretest:i": "npm run db:up && ./scripts/wait-for-db.sh && dotenv -e .env.test -- npx prisma migrate deploy",
"test:i": "vitest run --config ./vitest.integration.ts",
"posttest:i": "npm run db:down",
"migrate:create": "dotenv -e .env.staging -- npx prisma migrate dev",
"migrate:staging": "dotenv -e .env.staging -- npx prisma migrate deploy",
"migrate:production": "dotenv -e .env.production -- npx prisma migrate deploy"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@clerk/backend": "^1.23.9",
"@clerk/remix": "^4.0.10",
"@emotion/cache": "latest",
"@emotion/react": "^11.11.3",
"@emotion/server": "latest",
"@emotion/styled": "^11.11.0",
"@heroicons/react": "^2.1.1",
"@material-tailwind/react": "^2.1.8",
"@prisma/client": "^6.0.1",
"@remix-run/css-bundle": "2.9.1",
"@remix-run/node": "2.9.1",
"@remix-run/react": "2.9.1",
"@remix-run/serve": "2.9.1",
"@remix-run/server-runtime": "2.9.1",
"@sendgrid/mail": "^8.1.3",
"@sentry/react": "^7.113.0",
"@sentry/remix": "^7.119.2",
"@supabase/auth-helpers-remix": "^0.2.6",
"@supabase/auth-ui-react": "^0.4.7",
"@supabase/auth-ui-shared": "^0.1.8",
"@supabase/supabase-js": "^2.41.1",
"@tailwindcss/aspect-ratio": "^0.4.2",
"axios": "^1.6.7",
"bcryptjs": "^2.4.3",
"close-with-grace": "^1.3.0",
"cloudinary": "^2.2.0",
"cors": "^2.8.5",
"date-fns": "^3.3.1",
"date-fns-tz": "^2.0.0",
"dotenv": "^16.4.7",
"escape-html": "^1.0.3",
"framer-motion": "^11.2.4",
"get-user-locale": "^2.3.2",
"intl": "^1.2.5",
"isbot": "^3.7.1-deprecated",
"msw": "^2.2.3",
"open-graph-scraper": "^6.5.2",
"react": "18.2.0",
"react-circular-progressbar": "^2.1.0",
"react-copy-to-clipboard": "^5.1.0",
"react-data-table-component": "^7.6.2",
"react-datepicker": "^5.0.0",
"react-device-detect": "^2.2.3",
"react-dom": "18.2.0",
"react-ga": "^3.3.1",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.12.0",
"react-media-recorder": "^1.6.6",
"react-modal-image": "^2.6.0",
"react-resizable": "^3.0.5",
"remix-auth": "^4.1.0",
"remix-utils": "^7.5.0",
"save": "^2.9.0",
"svix": "^1.21.0",
"ts-node": "^10.9.2",
"upgrade-remix": "^0.6.2",
"uuid": "^11.0.4",
"zod": "^3.22.4",
"zustand": "^5.0.0-rc.2"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@flydotio/dockerfile": "^0.5.0",
"@remix-run/dev": "2.9.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^14.2.1",
"@types/bcryptjs": "^2.4.6",
"@types/escape-html": "^1.0.4",
"@types/intl": "^1.2.2",
"@types/jest": "^29.5.14",
"@types/react": "18.2.42",
"@types/react-datepicker": "^4.19.5",
"@types/react-dom": "^18.2.19",
"@types/react-modal-image": "^2.6.3",
"@types/react-test-renderer": "^18.0.7",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.3.1",
"autoprefixer": "^10.4.16",
"dotenv-cli": "^7.4.2",
"eslint": "^8.57.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.34.0",
"jest": "^29.7.0",
"jsdom": "^24.0.0",
"postcss": "^8.4.32",
"prisma": "^6.0.1",
"prisma-generator-typescript-interfaces": "^1.4.0",
"tailwindcss": "^3.4.0",
"ts-jest": "^29.2.5",
"typescript": "^5.4.2",
"vite": "^5.1.5",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.3.1"
},
"engines": {
"node": ">=14"
},
"sideEffects": false
}