-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 2.08 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
{
"name": "smart-health-links-portal",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "prisma migrate dev --schema=./prisma/schema.prisma && next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"test": "jest",
"prisma:dev": "prisma migrate dev --schema=./prisma/schema.prisma",
"prisma:prod": "prisma migrate deploy --schema=./prisma/schema.prisma",
"prisma:test": "prisma migrate dev --schema=./prisma/schema.test.prisma",
"prisma:generate": "prisma generate --schema=./prisma/schema.prisma",
"prettier": "prettier 'src/**/*.{ts,tsx}' --write",
"prettier:check": "prettier --check 'src/**/*.{ts,tsx}'"
},
"dependencies": {
"@emotion/cache": "^11.13.1",
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^5.16.6",
"@mui/material": "^5.16.6",
"@mui/material-nextjs": "^5.16.6",
"@types/fhir": "^0.0.41",
"axios": "^1.7.7",
"next": "14.2.5",
"next-auth": "^4.24.7",
"next-swagger-doc": "^0.4.0",
"prisma-field-encryption": "^1.5.2",
"qrcode": "^1.5.4",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.53.0",
"winston-daily-rotate-file": "^5.0.0",
"swagger-ui-react": "^5.17.14",
"uuid": "^10.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@prisma/client": "^5.18.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.0.3",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/winston": "^2.4.4",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.8",
"eslint-import-resolver-typescript": "~3.6.3",
"jest": "^29.7.0",
"jest-coverage-badges": "^1.0.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.0.0",
"prisma": "^5.18.0",
"typescript": "^5"
},
"engines": {
"node": "^18.18.0 || ^20.0.0"
}
}