-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
59 lines (59 loc) · 1.67 KB
/
package.json
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
{
"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": "^1.7.19",
"@radix-ui/react-tooltip": "^1.0.7",
"@types/react-virtualized": "^9.21.30",
"clsx": "^2.1.1",
"openchemlib-utils": "^5.19.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.2.1",
"react-mf": "^2.0.2",
"react-ocl": "^6.1.0",
"react-router-dom": "^6.23.1",
"react-virtualized-auto-sizer": "^1.0.24",
"react-window": "^1.8.10",
"usehooks-ts": "^3.1.0"
},
"devDependencies": {
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.3.3",
"@types/react-virtualized-auto-sizer": "^1.0.4",
"@types/react-window": "^1.8.8",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-zakodium": "^9.0.1",
"mf-parser": "^3.1.1",
"openchemlib": "^8.11.0",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"progress": "^2.0.3",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"use-resize-observer": "^9.1.0",
"vite": "^5.2.11",
"vitest": "^1.6.0"
},
"volta": {
"node": "20.13.1"
}
}