forked from secomind/OOBE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.43 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.43 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
{
"name": "medical-app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"build": "vite build",
"prebuild": "npm run i18n:compile",
"watch": "vite build --watch",
"prewatch": "npm run i18n:compile",
"serve": "vite preview",
"i18n:extract": "formatjs extract 'src/**/*.ts*' --ignore='**/*.d.ts' --out-file src/i18n/langs/en.json --id-interpolation-pattern '[sha512:contenthash:base64:6]'",
"i18n:compile": "formatjs compile-folder src/i18n/langs --ast src/i18n/langs-compiled",
"format": "prettier --write .",
"check-types": "tsc"
},
"dependencies": {
"@formatjs/cli": "^6.12.2",
"@formatjs/intl": "^4.1.2",
"@types/phoenix": "^1.6.7",
"apexcharts": "^5.5.1",
"axios": "^1.13.5",
"bootstrap": "^5.3.8",
"phoenix": "^1.8.3",
"qs": "^6.14.1",
"react": "^18.3.1",
"react-apexcharts": "^2.0.0",
"react-bootstrap": "^2.10.10",
"react-dom": "^18.3.1",
"react-intl": "^7.1.14"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.1",
"@types/qs": "^6.14.0",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"prettier": "^3.8.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "^7.2.4"
}
}