-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.96 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
{
"name": "management-app",
"version": "0.0.1",
"private": true,
"description": "The SafeInsights management app serves as an interface for researchers to submit and members to approve study proposals.",
"license": "AGPL-3.0-or-later",
"author": "Nathan Stitt",
"main": "index.js",
"type": "module",
"scripts": {
"build:docker:production": "./bin/prod-docker-build",
"build:docker:ci": "./bin/prod-docker-build ci-only-do-not-push",
"dev": "next dev --turbopack -p 4000",
"prepare": "panda codegen",
"build": "next build",
"start": "next start",
"deploy": "tsx bin/deploy.ts",
"ci": "run-p checks test:e2e test:unit && npm run test:coverage",
"lint": "next lint && prettier --check .",
"lint:fix": "next lint --fix && prettier --write .",
"pre:push": "run-s lint:fix typecheck",
"typecheck": "cd src && tsc --noEmit",
"update-db-types": "kysely-codegen --out-file src/database/types.ts",
"checks": "run-p -c typecheck lint",
"test:e2e": "playwright test",
"test:unit": "vitest",
"test": "run-p -c test:*",
"test:coverage": "tsx tests/merged-coverage.ts",
"pre:commit": "npx lint-staged"
},
"dependencies": {
"@aws-sdk/client-ecr": "^3.721.0",
"@aws-sdk/client-s3": "^3.722.0",
"@aws-sdk/credential-provider-ini": "^3.721.0",
"@aws-sdk/lib-storage": "^3.722.0",
"@aws-sdk/s3-presigned-post": "^3.697.0",
"@aws-sdk/s3-request-presigner": "^3.722.0",
"@clerk/nextjs": "^6.9.6",
"@faker-js/faker": "^9.3.0",
"@hookform/resolvers": "^3.9.1",
"@mantine/core": "^7.15",
"@mantine/dropzone": "^7.14.1",
"@mantine/form": "^7.15",
"@mantine/modals": "^7.15",
"@mantine/notifications": "^7.15.2",
"@mantinex/dev-icons": "^1.1.0",
"@sentry/nextjs": "^8.47.0",
"@tabler/icons-react": "^3.27.1",
"@tanstack/react-query": "^5.62.15",
"@types/jsonwebtoken": "^9.0.7",
"@types/papaparse": "^5.3.15",
"@types/uuid": "^10.0.0",
"aws-iam-policy-types": "^1.0.1",
"aws-sdk": "^2.1692.0",
"child_process": "^1.0.2",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"debug": "^4.4.0",
"highlight.js": "^11.11.1",
"jsonwebtoken": "^9.0.2",
"kysely": "^0.27.5",
"kysely-ctl": "^0.10.1",
"mantine-datatable": "^7.15.1",
"mantine-form-zod-resolver": "^1.1.0",
"next": "15.1.3",
"next-swagger-doc": "^0.4",
"papaparse": "^5.4.1",
"pg": "^8.13.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-icons": "^5.4.0",
"remeda": "^2.19.0",
"server-only": "^0.0.1",
"uuid": "^11.0.4",
"zod": "^3.24.1"
},
"devDependencies": {
"@clerk/testing": "^1.4.4",
"@eslint/js": "^9.17.0",
"@next/eslint-plugin-next": "^15.1.3",
"@pandacss/dev": "^0.51.1",
"@playwright/test": "^1.49",
"@testing-library/react": "^16.1",
"@testing-library/user-event": "^14.5.2",
"@types/debug": "^4.1.12",
"@types/react": "19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.8",
"dotenv": "*",
"eslint": "^9.17.0",
"eslint-config-next": "*",
"eslint-config-prettier": "*",
"eslint-plugin-react": "^7.37.3",
"globals": "^15.14.0",
"happy-dom": "*",
"husky": "^9.1.7",
"kysely-codegen": "^0.17.0",
"lint-staged": "^15.3.0",
"monocart-reporter": "^2.9.13",
"next-router-mock": "^0.9.13",
"npm-run-all": "*",
"pg-transactional-tests": "^1.2.0",
"prettier": "*",
"tsx": "^4.19.2",
"typescript-eslint": "^8.19.1",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "*",
"vitest-monocart-coverage": "^2.1.3"
}
}