-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.44 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.44 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
{
"name": "gradexis",
"private": true,
"version": "1.0.0",
"description": "Gradexis",
"repository": "",
"license": "UNLICENSED",
"scripts": {
"api": "cd gradexis-api && nodemon index.js",
"start": "npm run dev",
"dev": "cross-env NODE_ENV=development vite",
"all": "concurrently \"npm run dev\" \"npm run api\"",
"build": "cross-env NODE_ENV=production vite build && npx cap sync",
"postinstall": "cpy --flat ./node_modules/framework7-icons/fonts/*.* ./src/fonts/ && cpy --flat ./node_modules/material-icons/iconfont/*.* ./src/fonts/",
"android": "npm run build && npx cap sync android && npx cap run android",
"android:build": "npm run build && npx cap sync android"
},
"browserslist": [
"IOS >= 15",
"Safari >= 15",
"last 5 Chrome versions",
"last 5 Firefox versions"
],
"dependencies": {
"@aashu-dubey/capacitor-statusbar-safe-area": "^4.0.0",
"@aparajita/capacitor-biometric-auth": "^9.0.0",
"@capacitor/android": "^7.2.0",
"@capacitor/app": "^7.0.1",
"@capacitor/camera": "^7.0.1",
"@capacitor/cli": "^7.2.0",
"@capacitor/core": "^7.2.0",
"@capacitor/ios": "^7.2.0",
"@capacitor/local-notifications": "^7.0.2",
"@capacitor/preferences": "^7.0.2",
"@capacitor/push-notifications": "^7.0.2",
"@capacitor/splash-screen": "^7.0.2",
"@capacitor/status-bar": "^7.0.3",
"@capgo/inappbrowser": "^7.16.2",
"@material/material-color-utilities": "^0.3.0",
"axios": "^1.7.7",
"axios-cookiejar-support": "^6.0.2",
"chart.js": "^4.5.0",
"cheerio": "^1.0.0",
"color-convert": "^3.0.1",
"cors": "^2.8.5",
"dom7": "^4.0.6",
"express": "^5.1.0",
"framework7": "^8.3.4",
"framework7-icons": "^5.0.5",
"framework7-react": "^8.3.4",
"material-icons": "^1.13.14",
"prop-types": "^15.8.1",
"react": "^19.1.0",
"react-chartjs-2": "^5.3.0",
"react-dom": "^19.1.0",
"skeleton-elements": "^4.0.1",
"swiper": "^11.2.6",
"tough-cookie": "^5.1.2",
"web-push": "^3.6.7"
},
"devDependencies": {
"@capacitor/assets": "^3.0.5",
"@eslint/js": "^9.35.0",
"@vitejs/plugin-react": "^4.3.1",
"concurrently": "^9.1.2",
"cpy-cli": "^5.0.0",
"cross-env": "^7.0.3",
"eslint": "^9.35.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.3.0",
"postcss-preset-env": "^10.1.6",
"vite": "^6.3.3",
"vite-plugin-terminal": "^1.2.0"
}
}