-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.56 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.56 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
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "edilkamin",
"homepage": "https://edilkamin.vercel.app/",
"version": "2026.01.05",
"private": true,
"license": "MIT",
"dependencies": {
"@capacitor-community/bluetooth-le": "^8.1.0",
"@capacitor-community/safe-area": "^8.0.1",
"@capacitor/android": "^8.0.0",
"@capacitor/core": "^8.0.0",
"@fortawesome/fontawesome-svg-core": "^7.1.0",
"@fortawesome/free-brands-svg-icons": "^7.1.0",
"@fortawesome/free-regular-svg-icons": "^7.1.0",
"@fortawesome/free-solid-svg-icons": "^7.1.0",
"@fortawesome/react-fontawesome": "^3.2.0",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-tooltip": "^1.2.8",
"@types/node": "^24.10.7",
"@types/react": "^19",
"@types/react-dom": "^19",
"assert": "^2.0.0",
"axios": "^1.13.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"edilkamin": "1.14.1",
"i18next": "^25.7.4",
"lucide-react": "^0.563.0",
"next": "^16",
"next-i18next": "^15.4.3",
"prism-react-renderer": "^2.4.1",
"react": "^19",
"react-dom": "^19",
"react-i18next": "^16.5.4",
"react-is": "^19.2.3",
"react-simple-pull-to-refresh": "^1.3.4",
"recharts": "^3.7.0",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"web-vitals": "^5.1.0"
},
"scripts": {
"postinstall": "patch-package",
"dev": "next dev",
"dev:debug": "NODE_OPTIONS='--inspect' next dev",
"build": "NEXT_PUBLIC_GIT_DESCRIBE=$(git describe --tags --always) next build",
"build:mobile": "NEXT_PUBLIC_GIT_DESCRIBE=$(git describe --tags --always 2>/dev/null || node -p \"require('./package.json').version\") BUILD_TARGET=mobile next build",
"start": "next start",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:coverage:watch": "vitest watch --coverage",
"lint:prettier": "prettier --check src docs .github *.json *.md *.mjs",
"format:prettier": "prettier --write src docs .github *.json *.md *.mjs",
"lint:eslint": "eslint src",
"format:eslint": "eslint --fix src",
"lint": "yarn lint:prettier && yarn lint:eslint",
"format": "yarn format:prettier && yarn format:eslint",
"cap:sync": "cap sync",
"cap:android": "cap open android",
"android": "yarn build:mobile && yarn cap:sync && yarn cap:android"
},
"engines": {
"node": "24.x"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@capacitor/assets": "^3.0.5",
"@capacitor/cli": "^8.0.0",
"@eslint/js": "^9.39.2",
"@tailwindcss/postcss": "^4.1.18",
"@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",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"@vitejs/plugin-react": "^5.1.3",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.39.2",
"eslint-config-next": "^16",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jsdom": "^28.0.0",
"patch-package": "^8.0.1",
"postcss": "^8.4",
"postinstall-postinstall": "^2.1.0",
"prettier": "^3.8.0",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}