-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.6 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
{
"name": "jpc-finance",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"sandbox": "ampx sandbox --stream-function-logs",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"prod-config": "ampx generate outputs --app-id d1vtztqzhv9x55 --branch main --profile personal",
"ios": "npm run prod-config && npm run dev-ios",
"dev-ios": "npm run build && cap sync && cap copy ios && tsx scripts/updateIosVersion.ts && cap open ios",
"prepare": "husky install"
},
"dependencies": {
"@aws-amplify/ui-react": "^6.8.0",
"@aws-amplify/ui-react-ai": "^1.2.0",
"@capacitor/app": "^5.0.7",
"@capacitor/core": "^5.7.4",
"@capacitor/ios": "^5.7.4",
"@capacitor/local-notifications": "^5.0.7",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@johnpc/financekit-capacitor": "^0.0.3",
"@mui/icons-material": "^5.15.15",
"@mui/material": "^5.15.15",
"aws-amplify": "^6.11.0",
"aws-lambda": "^1.0.7",
"axios": "^1.6.8",
"date-fns": "^3.6.0",
"plaid": "^23.0.0",
"react": "^18.2.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dnd-multi-backend": "^8.0.3",
"react-dnd-preview": "^8.0.3",
"react-dnd-touch-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.6",
"react-markdown": "^9.0.1",
"react-plaid-link": "^3.5.1",
"rehype-highlight": "^7.0.1",
"remark-gfm": "^4.0.0",
"teller-connect-react": "^0.1.0"
},
"devDependencies": {
"@aws-amplify/backend": "^1.11.0",
"@aws-amplify/backend-cli": "^1.4.5",
"@aws-sdk/client-bedrock-runtime": "^3.716.0",
"@capacitor/assets": "^3.0.5",
"@capacitor/cli": "^5.7.4",
"@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.137.0",
"aws-cdk-lib": "^2.137.0",
"constructs": "^10.3.0",
"dotenv": "^16.4.5",
"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",
"tsx": "^4.7.2",
"typescript": "^5.4.5",
"vite": "^5.2.0"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --cache --fix"
],
"*.json": "prettier --write",
"*.yml": "prettier --write",
"*.md": "prettier --write"
}
}