forked from vesoft-inc/nebula-studio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.05 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
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
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "nebula-graph-studio",
"version": "3.9.0",
"description": "nebula-graph-studio",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/vesoft-inc/nebula-studio.git"
},
"license": "Apache 2.0",
"scripts": {
"start": "vite",
"dev": "vite",
"dev:go": "cd server/api/studio && make run",
"build": "tsc && vite build",
"preview": "vite preview",
"postinstall": "husky install"
},
"dependencies": {
"@ant-design/icons": "^5.1.3",
"@ant-design/pro-layout": "^7.13.5",
"@monaco-editor/react": "^4.6.0",
"@vesoft-inc/force-graph": "2.0.7",
"@vesoft-inc/i18n": "^1.0.1",
"@vesoft-inc/icons": "^1.7.0",
"@vesoft-inc/nebula-explain-graph": "^1.0.11",
"@vesoft-inc/veditor": "^4.4.14",
"antd": "^5.8.4",
"axios": "^0.23.0",
"bezier-js": "^4.1.1",
"bignumber.js": "^9.0.2",
"classnames": "^2.3.1",
"core-js": "^3.21.1",
"d3-force-3d": "^3.0.2",
"d3-selection": "2",
"dayjs": "^1.10.7",
"dom-to-image": "^2.6.0",
"gl-matrix": "^3.4.3",
"history": "^5.1.0",
"js-base64": "^3.7.2",
"js-cookie": "^2.2.1",
"js-yaml": "^4.1.0",
"json-bigint": "^1.0.0",
"json2yaml": "^1.1.0",
"lodash": "^4.17.15",
"lodash.debounce": "^4.0.8",
"mobx": "^6.9.0",
"mobx-react-lite": "^3.4.3",
"pdfjs-dist": "^4.0.269",
"query-string": "^7.1.1",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-color": "^2.19.3",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-papaparse": "^4.1.0",
"react-router-dom": "^5.3.0",
"uuid": "^8.3.1"
},
"devDependencies": {
"@types/bezier-js": "^4.1.0",
"@types/d3-color": "^3.0.2",
"@types/dagre": "^0.7.46",
"@types/ejs": "^3.1.2",
"@types/json-bigint": "^1.0.1",
"@types/lodash": "^4.14.144",
"@types/node": "^16.7.0",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@types/react-router-dom": "^5.1.0",
"@types/supertest": "^2.0.0",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"@vitejs/plugin-react-swc": "^3.3.1",
"autoprefixer": "^10.4.14",
"cheerio": "^1.0.0-rc.12",
"ejs": "^3.1.9",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"husky": "^8.0.3",
"less": "^4.1.1",
"postcss": "^8.4.12",
"postcss-preset-env": "^8.4.1",
"prettier": "^2.8.8",
"react-dev-utils": "^12.0.0",
"stylelint": "^15.6.2",
"stylelint-config-recommended": "^12.0.0",
"stylelint-config-standard": "^33.0.0",
"typescript": "^5.0.0",
"vite": "^4.3.9"
},
"engines": {
"node": ">=16.8.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./app/**/*.{js,jsx,ts,tsx}": [
"npx prettier --write",
"eslint './app/**/*.{js,jsx,ts,tsx}' --fix --quiet"
]
},
"ci": {
"version": "8"
},
"type": "module"
}