-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.23 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.23 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"engines": {
"node": "20.*.*"
},
"name": "guac-visualizer",
"version": "0.0.0-development",
"license": "Apache-2.0",
"private": true,
"scripts": {
"dev": "next dev --webpack",
"build": "next build --webpack",
"start": "next start",
"lint": "next lint",
"compile": "graphql-codegen",
"watch": "graphql-codegen -w"
},
"dependencies": {
"3d-force-graph": "^1.71.2",
"@apollo/client": "^3.8.4",
"@apollo/react-hooks": "^4.0.0",
"@eslint/plugin-kit": "^0.3.4",
"@floating-ui/dom": "^1.2.6",
"@heroicons/react": "^2.0.18",
"@remix-run/router": "1.23.2",
"@textea/json-viewer": "^2.14.1",
"@types/node": "^20.14.8",
"@types/react": "18.0.27",
"@types/react-cytoscapejs": "^1.2.2",
"@types/react-dom": "18.0.10",
"autoprefixer": "^10.4.14",
"deepmerge": "^4.3.0",
"eslint": "9.26.0",
"eslint-config-next": "^13.5.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.25.3",
"form-data": "2.5.5",
"got": "^14.4.3",
"graphql": "^16.8.1",
"graphql-codegen-apollo-next-ssr": "^1.7.4",
"jerrypick": "^1.1.1",
"js-yaml": "^4.1.1",
"lodash": "^4.17.23",
"next": "16.1.7",
"next-transpile-modules": "^10.0.0",
"postcss": "^8.4.31",
"qs": "6.14.2",
"react": "^18.2.0",
"react-cytoscapejs": "^2.0.0",
"react-dom": "^18.2.0",
"react-force-graph-2d": "^1.23.15",
"react-router": "6.30.2",
"react-router-dom": "^6.11.0",
"react-select": "^5.7.2",
"react-toggle-button": "^2.2.0",
"swr": "^2.1.0",
"tailwindcss": "^3.3.1",
"typescript": "^4.9.4",
"uuid": "^9.0.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^3.2.2",
"@graphql-codegen/client-preset": "^2.1.1",
"@graphql-codegen/typescript": "^3.0.2",
"@graphql-codegen/typescript-operations": "^3.0.2",
"@graphql-codegen/typescript-react-apollo": "^3.3.7",
"@graphql-codegen/typescript-resolvers": "^3.1.1",
"@types/cytoscape": "3.19.9",
"@types/got": "^9.6.12",
"@types/lodash": "^4.14.196",
"@types/uuid": "^9.0.1",
"cosmos-over-cytoscape": "^1.0.3",
"react-multi-select-component": "^4.3.4",
"styled-components": "^5.3.9"
}
}