-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.43 KB
/
package.json
File metadata and controls
43 lines (43 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
{
"name": "pcg-docs",
"version": "1.0.0",
"description": "PCG Documentation with hypergraph support",
"scripts": {
"setup": "npm install && npm run setup:mdbook",
"setup:mdbook": "node scripts/setup-mdbook.js",
"serve": "npm run build:js && concurrently \"npm run watch:preprocessor\" \"npm run watch:webpack\" \"npm run serve:mdbook\"",
"serve:mdbook": "mdbook serve",
"watch:preprocessor": "tsc -p tsconfig.preprocessor.json --watch",
"watch:webpack": "webpack --watch --mode development",
"build": "npm run build:js && npm run build:mdbook",
"build:js": "npm run build:preprocessor && webpack",
"build:preprocessor": "tsc -p tsconfig.preprocessor.json",
"build:mdbook": "mdbook build",
"clean": "rm -rf book node_modules package-lock.json theme/hypergraph.js preprocessors/*.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"cytoscape": "^3.28.1",
"cytoscape-bubblesets": "^4.0.0",
"cytoscape-layers": "^3.0.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/cytoscape": "^3.21.9",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.7.0",
"concurrently": "^8.2.2",
"jest": "^30.2.0",
"ts-jest": "^29.4.4",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"engines": {
"node": ">=14.0.0"
}
}