-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.09 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
{
"name": "jpc-eats",
"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",
"sandbox": "ampx sandbox --profile personal",
"preview": "vite preview",
"prod-config": "ampx generate outputs --app-id d2d2fy881dt3wt --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"
},
"dependencies": {
"@aws-amplify/ui-react": "^6.1.12",
"@aws-amplify/ui-react-geo": "^2.0.16",
"@aws-sdk/s3-request-presigner": "^3.598.0",
"@capacitor/app": "^5.0.7",
"@capacitor/core": "^5.7.5",
"@capacitor/geolocation": "^5.0.7",
"@capacitor/ios": "^5.7.5",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.15.18",
"@mui/material": "^5.15.18",
"aws-amplify": "^6.6.0",
"aws-lambda": "^1.0.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"use-debounce": "^10.0.1"
},
"devDependencies": {
"@aws-amplify/backend": "^1.2.1",
"@aws-amplify/backend-cli": "^1.2.5",
"@capacitor/assets": "^3.0.5",
"@capacitor/cli": "^5.7.5",
"@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.142.1",
"aws-cdk-lib": "^2.142.1",
"constructs": "^10.3.0",
"dotenv": "^16.4.5",
"esbuild": "^0.21.3",
"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.10.5",
"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"
}
}