-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.48 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.48 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
{
"name": "json-dictionary-browser",
"description": "JSON Dictionary Browser",
"private": true,
"version": "0.0.4",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "biome lint && biome format && biome check",
"lint-fix": "biome lint --write && biome format --write && biome check --write",
"preview": "vite preview",
"generate-pwa-assets": "pwa-assets-generator --config ./pwa-assets.config.ts",
"clean": "del-cli dist"
},
"dependencies": {
"@ant-design/v5-patch-for-react-19": "^1.0.3",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"antd": "^5.24.9",
"classnames": "^2.5.1",
"fuse.js": "^7.1.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"styled-components": "^6.1.17"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0-beta.2",
"@types/node": "^22.15.3",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.3",
"@types/wicg-file-system-access": "^2023.10.6",
"@vite-pwa/assets-generator": "^1.0.0",
"@vitejs/plugin-react": "^4.4.1",
"del-cli": "^6.0.0",
"globals": "^16.0.0",
"typescript": "~5.8.3",
"vite": "^6.3.4",
"vite-plugin-pwa": "^1.0.0",
"workbox-core": "^7.3.0",
"workbox-window": "^7.3.0"
},
"overrides": {
"sharp": "0.32.6",
"sharp-ico": "0.1.5"
}
}