-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.68 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
{
"private": true,
"name": "nookmoney",
"description": "",
"license": "MIT",
"scripts": {
"build": "remix build",
"db:push": "npx prisma db push",
"db:migrate:deploy": "npx prisma migrate deploy",
"db:migrate:dev": "npx prisma migrate dev",
"dev": "remix dev",
"start": "remix-serve build",
"test": "jest -i --watch-all --colors",
"test:cov": "jest --coverage --colors"
},
"dependencies": {
"@prisma/client": "^4.4.0",
"@remix-run/node": "^1.7.2",
"@remix-run/react": "^1.7.2",
"@remix-run/serve": "^1.7.2",
"@remix-run/vercel": "^1.7.2",
"@vercel/node": "^2.5.21",
"bcryptjs": "^2.4.3",
"clsx": "^1.2.1",
"domain-functions": "^1.3.0",
"react": "^18.2.0",
"react-datepicker": "^4.8.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.36.1",
"react-icons": "^4.4.0",
"recharts": "^2.3.2",
"remix-forms": "^0.18.2",
"zod": "^3.19.1"
},
"devDependencies": {
"@remix-run/dev": "^1.7.2",
"@remix-run/eslint-config": "^1.7.2",
"@swc/core": "^1.3.10",
"@swc/jest": "^0.2.23",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/bcryptjs": "^2.4.2",
"@types/jest": "^29.2.0",
"@types/react": "^18.0.21",
"@types/react-datepicker": "^4.4.2",
"@types/react-dom": "^18.0.6",
"@types/recharts": "^1.8.24",
"eslint": "^8.24.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.2.1",
"jest-environment-jsdom": "^29.2.1",
"jest-mock-extended": "^3.0.1",
"prisma": "^4.4.0",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"engines": {
"node": "16.x"
}
}