-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 4.12 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
{
"name": "hack-portal",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p ${PORT:-3000} -H 0.0.0.0",
"dev:turbopack": "next dev --turbo",
"build": "next build",
"start": "next start -p ${PORT:-3000}",
"lint": "next lint",
"types": "tsc --noEmit",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prisma:generate": "prisma generate",
"prisma:migrate-dev": "prisma migrate dev",
"prisma:migrate-prod": "prisma migrate deploy",
"prisma:seed": "prisma db seed",
"test:e2e": "playwright test",
"test:jest": "jest",
"test:jest:coverage": "jest --coverage",
"test:local-e2e-docker": "chmod +x ./scripts/runE2ELocally.sh && ./scripts/runE2ELocally.sh --copy-tests",
"generate-brevo-api-types": "swagger-typescript-api -p https://api.brevo.com/v3/swagger_definition_v3.yml -o ./src/services/emails/types -n BrevoApi",
"postinstall": "patch-package"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} ./prisma/seed.ts"
},
"dependencies": {
"@auth/prisma-adapter": "^1.0.9",
"@aws-sdk/client-s3": "^3.454.0",
"@aws-sdk/s3-request-presigner": "^3.454.0",
"@datadog/browser-logs": "^5.4.0",
"@heroicons/react": "^2.0.17",
"@hookform/resolvers": "^3.3.2",
"@prisma/client": "^5.5.2",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@sentry/nextjs": "^7.81.0",
"@tanstack/react-table": "^8.10.7",
"@tanstack/react-virtual": "^3.0.0-beta.68",
"@yudiel/react-qr-scanner": "^1.2.4",
"argon2": "^0.30.3",
"autoprefixer": "10.4.14",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"cmdk": "^0.2.0",
"date-fns": "^2.30.0",
"lucide-react": "^0.285.0",
"next": "^14.0.1",
"next-auth": "^4.24.4",
"patch-package": "^8.0.0",
"postcss": "8.4.31",
"qrcode.react": "^3.1.0",
"react": "^18.2.0",
"react-csv": "^2.2.2",
"react-day-picker": "^8.9.1",
"react-dom": "^18.2.0",
"react-hook-form": "^7.47.0",
"rehype": "^13.0.1",
"rehype-external-links": "^3.0.0",
"rehype-stringify": "^10.0.0",
"remark": "^15.0.1",
"remark-rehype": "^11.0.0",
"tailwind-merge": "^1.14.0",
"tailwindcss": "3.3.1",
"tailwindcss-animate": "^1.0.7",
"ts-node": "^10.9.1",
"unified": "^11.0.4",
"zod": "^3.22.4"
},
"devDependencies": {
"@playwright/test": "^1.39.0",
"@storybook/addon-essentials": "^7.5.2",
"@storybook/addon-interactions": "^7.5.2",
"@storybook/addon-links": "^7.5.2",
"@storybook/addon-styling": "^1.3.7",
"@storybook/blocks": "^7.5.2",
"@storybook/nextjs": "^7.5.2",
"@storybook/react": "^7.5.2",
"@storybook/testing-library": "^0.2.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/node": "18.15.11",
"@types/react": "^18.2.21",
"@types/react-csv": "^1.1.10",
"@types/react-dom": "18.0.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "8.38.0",
"eslint-config-next": "^13.4.19",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-storybook": "^0.6.15",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-mock-extended": "^3.0.5",
"postcss-loader": "^7.3.3",
"prettier": "^2.8.7",
"prisma": "^5.5.2",
"storybook": "^7.5.2",
"swagger-typescript-api": "^13.0.3",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.1.6"
}
}