-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.48 KB
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
{
"name": "onehook-client",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite --port=3000 --mode development",
"dev:staging": "vite --port=3000 --mode staging",
"build": "vite build --mode production",
"build:dev": "vite build --mode development",
"build:staging": "vite build --mode staging",
"build:prod": "vite build --mode production",
"preview": "vite preview",
"clean": "rm -rf dist node_modules package-lock.json",
"test": "vitest run src/tests",
"test:unit": "vitest run src/tests/unit.test.ts",
"test:integration": "vitest run src/tests/integration.test.ts",
"test:watch": "vitest watch src/tests",
"test:coverage": "vitest run --coverage src/tests",
"test:e2e": "playwright test",
"lint": "tsc --noEmit",
"lint:fix": "tsc --noEmit && prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"generate": "graphql-codegen",
"validate": "npm run lint && npm test",
"cdk:synth": "npx tsx infra/stacks/frontend-app.ts",
"cdk:deploy": "npm run build && npx cdk deploy --all --app 'npx tsx infra/stacks/frontend-app.ts' --require-approval never",
"deploy:dev": "npm run cdk:deploy -- --context env=dev",
"deploy:staging": "npm run cdk:deploy -- --context env=staging",
"deploy:prod": "npm run cdk:deploy -- --context env=prod --require-approval broadening"
},
"dependencies": {
"@aws-amplify/ui-react": "^6.15.5",
"@aws-amplify/ui-react-liveness": "^3.6.8",
"onehook-api-client": "^1.0.0",
"@rolldown/pluginutils": "^1.0.1",
"@smithy/fetch-http-handler": "^5.6.13",
"@tailwindcss/vite": "^4.1.14",
"@vitejs/plugin-react": "^5.0.4",
"aws-amplify": "^6.18.0",
"aws-cdk-lib": "^2.254.0",
"constructs": "^10.6.0",
"lucide-react": "^0.546.0",
"motion": "^12.23.24",
"qrcode.react": "^4.2.0",
"react": "^19.0.1",
"react-dom": "^19.0.1",
"react-router-dom": "^7.1.3",
"vite": "^6.2.3",
"vitest": "^4.1.6",
"zustand": "^5.0.2"
},
"devDependencies": {
"@graphql-codegen/cli": "^7.2.0",
"@graphql-codegen/client-preset": "^6.1.0",
"@types/node": "^22.14.0",
"autoprefixer": "^10.4.21",
"aws-cdk": "^2.1121.0",
"graphql": "^16.14.2",
"prettier": "^3.2.5",
"tailwindcss": "^4.1.14",
"tsx": "^4.21.0",
"typescript": "~5.8.2",
"vite-plugin-sitemap": "^0.8.2"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
}
}