-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.36 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.36 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
{
"name": "@gephi-documentation/root",
"version": "0.0.0",
"private": true,
"type": "module",
"workspaces": [
"gephi-desktop",
"gephi-lite"
],
"scripts": {
"start": "concurrently \"vite --config vite.config.ts\" \"npm run start --workspace @gephi-documentation/desktop\" \"npm run start --workspace @gephi-documentation/lite\"",
"build": "npm run build --workspaces --if-present && copyfiles ./index.html build && copyfiles -u 1 public/* build/",
"preview": "vite --config vite.preview.ts",
"clean": "npm run clear && rimraf ./build",
"clear": "npm run clear --workspaces --if-present"
},
"dependencies": {
"@docusaurus/core": "^3.8.1",
"@docusaurus/preset-classic": "^3.8.1",
"@mdx-js/react": "^3.1.0",
"clsx": "^2.1.1",
"copyfiles": "^2.4.1",
"docusaurus-plugin-matomo": "^0.0.8",
"prism-react-renderer": "^2.4.1",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "^3.8.1",
"concurrently": "^9.2.0",
"rimraf": "^6.0.1",
"typescript": "5.9.2",
"vite": "^7.1.2"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=22"
}
}