-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.67 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
{
"name": "ionic8-playground",
"description": "A playground application for Ionic 8 with React.",
"repository": {
"type": "git",
"url": "https://github.com/mwarman/ionic8-playground"
},
"license": "MIT",
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"prebuild": "./.appflow/scripts/prebuild.sh",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"test:ci": "vitest run --coverage --silent",
"test:coverage": "vitest --coverage",
"test:e2e": "cypress run",
"lint": "eslint --max-warnings 0",
"android": "npx cap sync android && npx cap open android"
},
"dependencies": {
"@capacitor/android": "6.2.0",
"@capacitor/app": "6.0.2",
"@capacitor/assets": "3.0.5",
"@capacitor/core": "6.2.0",
"@capacitor/haptics": "6.0.2",
"@capacitor/keyboard": "6.0.3",
"@capacitor/status-bar": "6.0.2",
"@fortawesome/fontawesome-svg-core": "6.7.2",
"@fortawesome/free-solid-svg-icons": "6.7.2",
"@fortawesome/react-fontawesome": "0.2.2",
"@ionic/react": "8.4.1",
"@ionic/react-router": "8.4.1",
"@tanstack/react-query": "5.62.16",
"@tanstack/react-query-devtools": "5.62.16",
"axios": "1.7.9",
"classnames": "2.5.1",
"dayjs": "1.11.13",
"formik": "2.4.6",
"i18next": "24.2.1",
"i18next-browser-languagedetector": "8.0.2",
"lodash": "4.17.21",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-error-boundary": "5.0.0",
"react-i18next": "15.4.0",
"react-router": "5.3.4",
"react-router-dom": "5.3.4",
"uuid": "11.0.4",
"yup": "1.6.1"
},
"devDependencies": {
"@capacitor/cli": "6.2.0",
"@eslint/js": "9.17.0",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.1.0",
"@testing-library/user-event": "14.5.2",
"@types/eslint__js": "8.42.3",
"@types/lodash": "4.17.14",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.1",
"@types/react-router": "5.1.20",
"@types/react-router-dom": "5.3.3",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "8.19.1",
"@typescript-eslint/parser": "8.19.1",
"@vitejs/plugin-legacy": "6.0.0",
"@vitejs/plugin-react": "4.3.4",
"@vitest/coverage-v8": "2.1.8",
"cypress": "13.17.0",
"eslint": "9.17.0",
"eslint-plugin-react": "7.37.3",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-react-refresh": "0.4.16",
"globals": "15.14.0",
"jsdom": "25.0.1",
"msw": "2.7.0",
"sass": "1.83.1",
"terser": "5.37.0",
"typescript": "5.7.2",
"typescript-eslint": "8.19.1",
"vite": "6.0.7",
"vitest": "2.1.8"
}
}