-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.31 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
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "remix build",
"dev": "remix dev",
"start": "remix-serve build",
"typecheck": "tsc",
"db:seed": "prisma db seed",
"db:push": "prisma db push"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"dependencies": {
"@prisma/client": "4.10.1",
"@remix-run/node": "1.13.0",
"@remix-run/react": "1.13.0",
"@remix-run/serve": "1.13.0",
"@stripe/react-stripe-js": "^2.4.0",
"@stripe/stripe-js": "^2.4.0",
"bcryptjs": "^2.4.3",
"dinero.js": "^1.9.1",
"domain-functions": "^1.5.1",
"isbot": "3.6.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.1",
"remix-forms": "1.5.3",
"stripe": "^14.14.0",
"zod": "^3.20.6"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@headlessui/react": "^1.7.11",
"@heroicons/react": "^2.0.16",
"@remix-run/dev": "1.13.0",
"@remix-run/eslint-config": "1.13.0",
"@tailwindcss/forms": "^0.5.3",
"@types/bcryptjs": "^2.4.2",
"@types/dinero.js": "^1.9.4",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"eslint": "8.34.0",
"prisma": "4.10.1",
"tailwindcss": "^3.2.7",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"engines": {
"node": ">=14"
}
}