-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.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
{
"private": true,
"name": "wikipedia",
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --open",
"build": "vite build",
"check-types": "tsc --noEmit",
"eslint": "eslint .",
"eslint-fix": "npm run eslint -- --fix",
"prettier": "prettier --check .",
"prettier-write": "prettier --write .",
"preview": "vite preview",
"test": "npm run test-only && npm run check-types && npm run eslint && npm run prettier",
"test-only": "vitest run src"
},
"dependencies": {
"@headlessui/react": "^2.2.10",
"@radix-ui/react-tooltip": "^1.2.13",
"@types/react-virtualized": "^9.22.3",
"clsx": "^2.1.1",
"openchemlib-utils": "^8.17.1",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-icons": "^5.7.0",
"react-mf": "^3.1.1",
"react-ocl": "^8.7.2",
"react-router-dom": "^7.18.1",
"react-virtualized-auto-sizer": "^2.0.3",
"react-window": "^2.2.7"
},
"devDependencies": {
"@tailwindcss/vite": "^4.3.3",
"@types/node": "^24.13.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react": "^6.0.3",
"@zakodium/tsconfig": "^1.0.5",
"eslint": "^9.39.5",
"eslint-config-zakodium": "^20.1.0",
"mf-parser": "^3.9.1",
"openchemlib": "^9.24.0",
"prettier": "^3.9.5",
"prettier-plugin-tailwindcss": "^0.8.1",
"progress": "^2.0.3",
"tailwindcss": "^4.3.3",
"typescript": "^6.0.3",
"vite": "^8.1.5",
"vitest": "^4.1.10"
},
"volta": {
"node": "24.18.0"
}
}