-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 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
77
{
"name": "dhanriti",
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"android": "cross-env CAP_ENV_TYPE=PROD tsc && vite build && cap sync && cap run android",
"android:prev": "cross-env CAP_ENV_TYPE=DEV tsc && cap sync && cap run android",
"preview": "vite preview",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@aashu-dubey/capacitor-statusbar-safe-area": "^1.1.0",
"@capacitor/android": "^5.0.0",
"@capacitor/app": "^5.0.0",
"@capacitor/core": "^5.0.0",
"@capacitor/device": "^5.0.0",
"@capacitor/filesystem": "^5.1.4",
"@capacitor/keyboard": "^5.0.0",
"@capacitor/push-notifications": "^5.0.0",
"@capacitor/status-bar": "^5.0.0",
"@capacitor/text-zoom": "^5.0.0",
"@hugotomazi/capacitor-navigation-bar": "^2.0.0",
"@ionic/pwa-elements": "^3.1.1",
"@kacker/ui": "^1.2.0",
"@tanstack/react-query": "^4.26.1",
"@types/number-to-words": "^1.2.1",
"@types/react-beautiful-dnd": "^13.1.5",
"@types/react-color": "^3.0.6",
"@types/react-hammerjs": "^1.0.4",
"@use-gesture/react": "^10.2.27",
"@writeroo/react-simple-pull-to-refresh": "^1.3.3",
"cordova-plugin-screen-orientation": "^3.0.3",
"cron-parser": "^4.9.0",
"cronstrue": "^2.44.0",
"dotenv": "^16.0.3",
"es6-promise-plugin": "^4.2.2",
"i18next": "^22.4.11",
"jotai": "^2.1.0",
"moment": "^2.29.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^12.2.0",
"tailwind-merge": "^1.10.0"
},
"devDependencies": {
"@capacitor/assets": "^2.0.4",
"@capacitor/cli": "^5.0.0",
"@types/eslint": "^8.21.3",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"@vitejs/plugin-react-swc": "^3.0.0",
"autoprefixer": "^10.4.13",
"cross-env": "^7.0.3",
"eslint": "^8.36.0",
"eslint-plugin-i18next": "^6.0.0-2",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"postcss": "^8.4.21",
"prettier": "^2.8.8",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.3",
"vite": "^4.1.5",
"vite-plugin-terminal": "^1.1.0"
}
}