-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.42 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
{
"type": "module",
"name": "@graphscope/studio-site",
"version": "0.1.20",
"author": "pomelo-nwu <czynwu@outlook.com>",
"files": [
"es",
"lib"
],
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"scripts": {
"tauri": "tauri",
"build": "father build",
"start": "vite dev",
"build:site:single": "vite build --mode=single",
"build:site:less": "vite build --mode=less",
"build:site": "vite build",
"build:desktop-app": "pnpm tauri build",
"build:desktop-icon": "pnpm tauri icon ./src-tauri/app-icon.png"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-opener": "^2",
"@ant-design/icons": "^5.2.6",
"@antv/graphin": "^2.7.27",
"@antv/graphin-icons": "^1.0.0",
"@fortawesome/free-regular-svg-icons": "latest",
"@fortawesome/free-solid-svg-icons": "latest",
"@fortawesome/react-fontawesome": "latest",
"@graphscope/studio-components": "workspace:*",
"@graphscope/studio-driver": "workspace:*",
"@graphscope/studio-explore": "workspace:*",
"@graphscope/studio-graph": "workspace:*",
"@graphscope/studio-importor": "workspace:*",
"@graphscope/studio-query": "workspace:*",
"@graphscope/studio-server": "workspace:*",
"@graphscope/use-zustand": "workspace:*",
"@graphscope/graphy-website": "workspace:*",
"@uiw/react-codemirror": "^4.21.21",
"antd": "^5.22.2",
"js-yaml": "^4.1.1",
"localforage": "^1.10.0",
"lodash": "^4.17.21",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-intl": "^6.6.8",
"react-json-view": "^1.21.3",
"react-router-dom": "^6.26.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"vite-plugin-static-copy": "^2.2.0",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.14.202",
"@types/node": "^22.7.5",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.0",
"@types/uuid": "^9.0.7",
"@umijs/lint": "latest",
"@vitejs/plugin-react": "^4.2.1",
"dotenv": "^16.4.5",
"eslint": "latest",
"monaco-editor-webpack-plugin": "^7.1.0",
"react-intl": "^6.6.1",
"typescript": "^5.3.3",
"vite": "^5.4.16",
"vite-plugin-node-externals": "^0.0.1",
"vite-plugin-singlefile": "^2.0.2",
"vite-plugin-top-level-await": "^1.4.4",
"vite-plugin-wasm": "^3.3.0"
}
}