-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.73 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.73 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "litegraph-ui",
"version": "1.0.4",
"private": true,
"scripts": {
"dev": "next dev -p 3001",
"build": "next build",
"start": "next start -p 3000",
"lint": "next lint",
"lint:fix": "next lint --fix && npm run format",
"test": "jest --verbose",
"test:watch": "npm run test -- -watch",
"test:update": "npm run test -- -u",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --maxWorkers=2",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky install"
},
"dependencies": {
"@ant-design/cssinjs": "^1.23.0",
"@ant-design/icons": "^5.3.1",
"@ant-design/nextjs-registry": "^1.0.2",
"@ant-design/v5-patch-for-react-19": "^1.0.3",
"@react-sigma/core": "^3.4.2",
"@reduxjs/toolkit": "^2.2.1",
"@types/file-saver": "^2.0.7",
"@types/react-resizable": "^3.0.8",
"@xmldom/xmldom": "^0.9.9",
"antd": "^5.19.1",
"classnames": "^2.5.1",
"eslint-config-next": "^16.1.5",
"file-saver": "^2.0.5",
"graphology": "^0.25.4",
"graphology-types": "^0.24.7",
"humanize-number": "^0.0.2",
"jsoneditor": "^10.4.2",
"jsoneditor-react": "^3.1.2",
"litegraphdb": "^1.0.12",
"lodash": "^4.18.1",
"moment": "^2.30.1",
"next": "^16.1.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-force-graph-3d": "^1.28.0",
"react-hot-toast": "^2.4.1",
"react-redux": "^9.1.2",
"react-resizable": "^3.0.5",
"react-toggle-dark-mode": "^1.1.1",
"sass": "^1.83.0",
"sigma": "^2.4.0",
"three": "^0.178.0",
"uuid": "^11.0.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.13",
"@types/node": "^20.11.25",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/three": "^0.178.1",
"autoprefixer": "^10.4.18",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.3.0",
"lint-staged": "^15.2.2",
"msw": "^2.4.9",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"typescript": "^5.4.2"
},
"msw": {
"workerDirectory": "public"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,md}": [
"prettier --write"
]
},
"overrides": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"jsoneditor-react": {
"react": "$react",
"react-dom": "$react-dom",
"jsoneditor": "$jsoneditor"
},
"lodash-es": "4.18.1",
"preact": "10.26.10",
"qs": "6.14.2"
}
}