-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.69 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
{
"private": true,
"type": "module",
"sideEffects": false,
"scripts": {
"build": "remix build",
"dev": "remix dev",
"start": "remix-serve ./build/index.js",
"test": "jest",
"test:watch": "jest --watch",
"typecheck": "tsc"
},
"dependencies": {
"@conform-to/react": "^0.9.1",
"@conform-to/zod": "^0.9.1",
"@prisma/client": "^5.1.1",
"@remix-run/node": "^2.5.1",
"@remix-run/react": "^2.5.1",
"@remix-run/serve": "^2.5.1",
"bcryptjs": "^2.4.3",
"crypto-js": "^4.2.0",
"isbot": "^4.4.0",
"libphonenumber-js": "^1.10.54",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-phone-number-input": "^3.3.9",
"remix-auth": "^3.6.0",
"tiny-invariant": "^1.3.1",
"twilio": "^4.20.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@remix-run/dev": "^2.5.1",
"@remix-run/eslint-config": "^2.5.1",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.10",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/bcryptjs": "^2.4.2",
"@types/crypto-js": "^4.2.2",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.8",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"daisyui": "^4.6.0",
"dotenv-cli": "^7.1.0",
"esbuild-register": "^3.4.2",
"eslint": "^8.27.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prisma": "^5.1.1",
"tailwindcss": "^3.2.7",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.1",
"tsx": "^4.7.0",
"typescript": "^5.1.0"
},
"engines": {
"node": ">=20.11.0"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}