-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.96 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
{
"name": "stormguard",
"private": true,
"type": "module",
"version": "1.0.0",
"description": "StormGuard",
"repository": "",
"license": "UNLICENSED",
"scripts": {
"start": "yarn dev",
"dev": "cross-env NODE_ENV=development vite",
"build": "cross-env NODE_ENV=production vite build",
"build-capacitor-ios": "cross-env NODE_ENV=production vite build && npx cap copy ios",
"build-capacitor-android": "cross-env NODE_ENV=production vite build && npx cap copy android",
"postinstall": "cpy --flat ./node_modules/framework7-icons/fonts/*.* ./src/fonts/ && cpy --flat ./node_modules/material-icons/iconfont/*.* ./src/fonts/"
},
"browserslist": [
"IOS >= 15",
"Safari >= 15",
"last 5 Chrome versions",
"last 5 Firefox versions"
],
"dependencies": {
"@capacitor/android": "^5.2.3",
"@capacitor/app": "^5.0.6",
"@capacitor/browser": "^5.0.6",
"@capacitor/core": "^5.2.3",
"@capacitor/geolocation": "^5.0.6",
"@capacitor/ios": "^5.2.3",
"@capacitor/keyboard": "^5.0.6",
"@capacitor/preferences": "^5.0.6",
"@capacitor/splash-screen": "^5.0.6",
"@capacitor/status-bar": "^5.0.6",
"@reduxjs/toolkit": "^1.9.5",
"@types/react-redux": "^7.1.25",
"axios": "^1.4.0",
"dom7": "^4.0.6",
"framework7": "^8.3.4",
"framework7-icons": "^5.0.5",
"framework7-react": "^8.3.4",
"material-icons": "^1.13.10",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.2.0",
"react-redux": "^8.1.2",
"skeleton-elements": "^4.0.1",
"swiper": "^10.2.0"
},
"devDependencies": {
"@capacitor/cli": "^5.2.3",
"@types/axios": "^0.14.0",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.4",
"cordova-res": "^0.15.4",
"cpy-cli": "^5.0.0",
"cross-env": "^7.0.3",
"less": "^4.2.0",
"postcss-preset-env": "^9.1.1",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"vite": "^4.4.9"
}
}