-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
108 lines (108 loc) · 3.11 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "mwa-reference",
"description": "An Ionic project",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "vite",
"build": "./build.sh",
"build-local": "tsc && vite build --mode production",
"serve": "vite preview",
"ionic:serve": "vite dev --host",
"ios": "ionic capacitor run ios --external --livereload -p 5173",
"android": "ionic capacitor run android --external --livereload -p 5173",
"local-setup": "husky install && npm install",
"lint": "eslint --ext js,jsx,ts,tsx src",
"lint-fix": "eslint --fix --ext js,jsx,ts,tsx src",
"tsc": "tsc",
"nuke:cache": "rm -rf ./node_modules/.cache"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@capacitor-community/barcode-scanner": "^4.0.1",
"@capacitor/android": "^5.7.4",
"@capacitor/app": "^5.0.7",
"@capacitor/core": "^5.7.4",
"@capacitor/geolocation": "^5.0.7",
"@capacitor/haptics": "^5.0.7",
"@capacitor/ios": "^5.7.4",
"@capacitor/keyboard": "^5.0.8",
"@capacitor/share": "^5.0.7",
"@capacitor/status-bar": "^5.0.7",
"@egym/mwa-logger": "^0.2.8",
"@egym/mwa-utils": "^0.3.2",
"@ionic/portals": "^0.9.0",
"@ionic/react": "^7.8.3",
"@ionic/react-router": "^7.8.3",
"@tanstack/react-query": "^5.28.14",
"date-fns": "^2.30.0",
"history": "^4.10.1",
"i18next": "^23.10.1",
"i18next-browser-languagedetector": "^7.2.1",
"i18next-http-backend": "^2.5.0",
"ionicons": "^7.3.1",
"jwt-decode": "^4.0.0",
"luxon": "^3.4.4",
"msw": "^2.2.13",
"path-to-regexp": "^6.2.1",
"qs": "^6.12.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.1.0",
"react-router": "^5.3.4",
"react-router-dom": "^5.3.4",
"reselect": "^4.1.8",
"web-vitals": "^0.2.4"
},
"devDependencies": {
"@capacitor/cli": "^5.7.4",
"@ionic/prettier-config": "^4.0.0",
"@types/luxon": "^3.4.2",
"@types/node": "^20.12.4",
"@types/qs": "^6.9.14",
"@types/react": "^18.2.74",
"@types/react-dom": "^18.2.24",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.5",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"pretty-quick": "^3.3.1",
"sass": "^1.74.1",
"vite": "^4.5.3",
"vite-plugin-checker": "^0.5.6",
"vite-plugin-svgr": "^2.4.0",
"vite-tsconfig-paths": "^4.3.2"
},
"msw": {
"workerDirectory": "public"
},
"peerDependencies": {
"typescript": "^4.9.5"
}
}