-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.01 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.01 KB
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
{
"name": "ionic8-starter",
"description": "A template to kickstart Ionic + React applications utilizing an opinionated technology stack for optimal testability, maintainability, and operability.",
"repository": {
"type": "git",
"url": "git+https://github.com/leanstacks/ionic8-starter.git"
},
"license": "MIT",
"version": "1.1.0",
"type": "module",
"scripts": {
"android": "npx cap sync android && npx cap open android",
"prebuild": "./.appflow/scripts/prebuild.sh",
"build": "tsc && vite build",
"clean": "rimraf coverage dist",
"dev": "vite --open",
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,js,json,md}\"",
"lint": "eslint . --ext .ts --max-warnings 0",
"lint:fix": "eslint . --ext .ts --fix",
"prepare": "husky",
"preview": "vite preview",
"test": "vitest",
"test:ci": "vitest run --coverage --silent",
"test:coverage": "vitest --coverage",
"test:e2e": "cypress run"
},
"dependencies": {
"@capacitor/android": "8.1.0",
"@capacitor/app": "8.0.1",
"@capacitor/assets": "3.0.5",
"@capacitor/core": "8.1.0",
"@capacitor/haptics": "8.0.1",
"@capacitor/keyboard": "8.0.1",
"@capacitor/status-bar": "8.0.1",
"@fortawesome/fontawesome-svg-core": "7.2.0",
"@fortawesome/free-solid-svg-icons": "7.2.0",
"@fortawesome/react-fontawesome": "3.2.0",
"@hookform/resolvers": "5.2.2",
"@ionic/react": "8.7.18",
"@ionic/react-router": "8.7.18",
"@tanstack/react-query": "5.90.21",
"@tanstack/react-query-devtools": "5.91.3",
"axios": "1.13.5",
"classnames": "2.5.1",
"date-fns": "4.1.0",
"i18next": "25.8.13",
"i18next-browser-languagedetector": "8.2.1",
"lodash": "4.17.23",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-error-boundary": "6.1.1",
"react-hook-form": "7.71.2",
"react-i18next": "16.5.4",
"react-router": "5.3.4",
"react-router-dom": "5.3.4",
"uuid": "13.0.0",
"zod": "4.3.6"
},
"devDependencies": {
"@capacitor/cli": "8.1.0",
"@eslint/js": "9.39.2",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/eslint__js": "8.42.3",
"@types/lodash": "4.17.24",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@types/react-router": "5.1.20",
"@types/react-router-dom": "5.3.3",
"@types/uuid": "10.0.0",
"@vitejs/plugin-legacy": "7.2.1",
"@vitejs/plugin-react": "5.1.4",
"@vitest/coverage-v8": "4.0.18",
"cypress": "15.11.0",
"eslint": "9.39.2",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-refresh": "0.5.2",
"globals": "17.3.0",
"husky": "9.1.7",
"jsdom": "26.1.0",
"msw": "2.12.10",
"prettier": "3.8.1",
"rimraf": "6.1.3",
"sass": "1.97.3",
"terser": "5.46.0",
"typescript": "5.9.3",
"typescript-eslint": "8.56.1",
"vite": "7.3.1",
"vitest": "4.0.18"
}
}