-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 3.16 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
{
"name": "trusted-output-app",
"version": "0.0.1",
"description": "Trusted Output App",
"main": "index.js",
"scripts": {
"dev": "next dev --turbopack -p 3002",
"build": "next build",
"start": "next start -p 3002",
"prepare": "panda codegen",
"docker:build": "docker build -t trusted-output-app .",
"lint": "next lint && prettier --check .",
"lint:fix": "next lint --fix && prettier --write .",
"typecheck": "tsc --noEmit",
"pre:push": "run-s lint:fix checks",
"pre:commit": "npx lint-staged",
"checks": "run-p -c typecheck lint",
"test:e2e": "playwright test",
"test:unit": "vitest",
"test": "run-p -c test:*",
"ecr:login": "aws ecr get-login-password --profile $AWS_PROFILE --region $AWS_REGION | docker login --username AWS --password-stdin $(aws sts get-caller-identity --query Account --output text --profile $AWS_PROFILE).dkr.ecr.$AWS_REGION.amazonaws.com",
"ecr:create-if-needed": "aws ecr describe-repositories --repository-names trusted-output-app --profile $AWS_PROFILE --region $AWS_REGION || aws ecr create-repository --repository-name trusted-output-app --profile $AWS_PROFILE --region $AWS_REGION",
"docker:tag": "docker tag trusted-output-app:latest $(aws sts get-caller-identity --query Account --output text --profile $AWS_PROFILE).dkr.ecr.$AWS_REGION.amazonaws.com/trusted-output-app:latest",
"docker:push": "docker push $(aws sts get-caller-identity --query Account --output text --profile $AWS_PROFILE).dkr.ecr.$AWS_REGION.amazonaws.com/trusted-output-app:latest",
"deploy:ecr": "npm run docker:build && npm run ecr:login && npm run ecr:create-if-needed && npm run docker:tag && npm run docker:push"
},
"license": "AGPL-3.0-or-later",
"devDependencies": {
"@playwright/test": "^1.49",
"@tanstack/query-core": "^5.62.16",
"@testing-library/react": "^16.1",
"@types/jsonwebtoken": "^9.0.7",
"@types/mock-fs": "^4.13.4",
"@types/react": "19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.8",
"@next/eslint-plugin-next": "^15.1.3",
"dotenv": "*",
"eslint": "9.17.0",
"eslint-config-next": "15.1.3",
"eslint-config-prettier": "9.1.0",
"happy-dom": ">=16.3.0",
"husky": "^9.1.7",
"mock-fs": "^5.4.1",
"npm-run-all": "*",
"@pandacss/dev": "^0.51.1",
"prettier": "^3.4.2",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "*"
},
"dependencies": {
"@clerk/nextjs": "^6.9.6",
"@mantine/core": "^7.15",
"@mantine/form": "^7.15",
"@mantine/modals": "^7.15",
"@mantine/notifications": "^7.15",
"@tanstack/react-query": "^5.62.16",
"clsx": "*",
"next": "15.1.3",
"csv-parse": "^5.6.0",
"jsonwebtoken": "^9.0.2",
"mantine-datatable": "^7.15.1",
"multer": "^1.4.5-lts.1",
"next-swagger-doc": "^0.4",
"uuid": "^11.0.4",
"react": "19.0.0",
"react-dom": "19.0.0"
},
"overrides": {
"@types/react": "19.0.3"
}
}