-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.6 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.6 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
{
"name": "tic-tac-toe",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"start": "ionic serve",
"build": "tsc && ionic build",
"build:android": "ionic capacitor copy android",
"build:ios": "ionic capacitor copy ios",
"test.e2e": "cypress run",
"test.e2e:debug": "cypress run --headed --no-exit",
"test.unit": "vitest",
"test.unit:debug": "vitest --run --logHeapUsage --bail 1",
"lint": "npx eslint . --fix",
"p": "npm run lint && npx prettier --log-level=warn --write .",
"prepare": "husky",
"generate": "npx @capacitor/assets generate --ios --android --iconBackgroundColor '#ffffff' --iconBackgroundColorDark '#222222' --splashBackgroundColor '#ffffff' --splashBackgroundColorDark '#111111'"
},
"dependencies": {
"@capacitor/android": "^6.1.0",
"@capacitor/app": "^6.0.0",
"@capacitor/core": "^6.1.0",
"@capacitor/haptics": "^6.0.0",
"@capacitor/ios": "^6.1.0",
"@capacitor/keyboard": "^6.0.1",
"@capacitor/preferences": "^6.0.1",
"@capacitor/splash-screen": "^6.0.1",
"@capacitor/status-bar": "^6.0.0",
"@ionic/react": "^8.2.2",
"@ionic/react-router": "^8.2.2",
"@reduxjs/toolkit": "^2.2.5",
"@sentry/capacitor": "^0.18.0",
"@sentry/react": "7.114.0",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"ionicons": "^7.4.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.1.2",
"react-router": "^5.3.4",
"react-router-dom": "^5.3.4",
"uuid": "^10.0.0"
},
"devDependencies": {
"@capacitor/assets": "^3.0.5",
"@capacitor/cli": "^6.1.0",
"@eslint/js": "^9.5.0",
"@testing-library/dom": "^10.1.0",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-legacy": "^5.4.1",
"@vitejs/plugin-react": "^4.3.1",
"cypress": "^13.12.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-vitest": "^0.5.4",
"globals": "^15.6.0",
"husky": "^9.0.11",
"jsdom": "^24.1.0",
"prettier": "^3.3.2",
"terser": "^5.31.1",
"typescript": "^5.5.2",
"typescript-eslint": "^7.13.1",
"vite": "^5.3.1",
"vitest": "^1.6.0"
},
"description": "An Ionic project",
"engines": {
"node": "22",
"npm": "10"
}
}