-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.38 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
{
"name": "jpc-fit-vite",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"sandbox": "ampx sandbox --profile personal",
"prod-config": "ampx generate outputs --app-id d14lkx3uodtpjt --branch main --profile personal",
"ios": "npm run prod-config && npm run dev-ios",
"dev-ios": "npm run build && cap sync && cap copy ios && cap open ios",
"prepare": "husky install",
"analyze": "source-map-explorer 'dist/assets/*.js'"
},
"overrides": {
"@aws-amplify/data-construct": "ai",
"@aws-amplify/graphql-api-construct": "ai"
},
"dependencies": {
"@aws-amplify/ui-react": "^6.3.0",
"@aws-amplify/ui-react-ai": "^0.1.0",
"@aws-amplify/ui-react-storage": "^3.3.1",
"@capacitor/app": "^6.0.1",
"@capacitor/ios": "^6.1.2",
"@capacitor/local-notifications": "^6.1.0",
"@capacitor/preferences": "^6.0.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^6.1.4",
"@mui/material": "^6.1.4",
"@perfood/capacitor-healthkit": "^1.3.0",
"aws-amplify": "^6.6.0",
"capacitor-widgetsbridge-plugin": "^0.1.2",
"date-fns": "^3.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@aws-amplify/backend": "^1.2.1",
"@aws-amplify/backend-cli": "^1.2.6",
"@aws-sdk/client-bedrock-runtime": "^3.645.0",
"@capacitor/assets": "^3.0.5",
"@capacitor/cli": "^6.1.2",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"aws-cdk": "^2.135.0",
"aws-cdk-lib": "^2.135.0",
"constructs": "^10.3.0",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"husky": "^8.0.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"source-map-explorer": "^2.5.3",
"tsx": "^4.7.2",
"typescript": "^5.4.4",
"vite": "^5.2.0"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --cache --fix"
],
"*.json": "prettier --write",
"*.yml": "prettier --write",
"*.md": "prettier --write"
}
}