-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.34 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
{
"name": "cytoscape-web-app-examples",
"version": "1.0.0",
"private": true,
"workspaces": [
"hello-world",
"simple-menu",
"simple-panel",
"project-template"
],
"scripts": {
"build": "npm run build --workspaces",
"dev": "concurrently \"npm:dev:*\"",
"dev:hello-world": "npm run dev -w hello-world",
"dev:simple-menu": "npm run dev -w simple-menu",
"dev:simple-panel": "npm run dev -w simple-panel",
"dev:project-template": "npm run dev -w project-template",
"deploy": "npm run build && npm run copy-dist",
"copy-dist": "cp -r hello-world/dist docs/hello-world && cp -r simple-menu/dist docs/simple-menu && cp -r simple-panel/dist docs/simple-panel"
},
"peerDependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/material": "^5.16.7",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^8.2.2",
"react": "^18.3.1",
"react-dom": "18.3.1",
"ts-loader": "^9.5.1",
"typescript": "^5.6.2",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"dependencies": {
"@cytoscape-web/types": "1.1.11",
"cytoscape": "^3.30.2",
"d3-scale": "^4.0.2"
}
}