-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.85 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.85 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
{
"name": "mind-map",
"version": "0.0.1",
"scripts": {
"reset": "npx rimraf ./**/node_modules",
"dev": "modern dev",
"build": "modern build",
"analyze": "npx modern build --analyze",
"start": "modern start",
"server": "export OLLAMA_ORIGINS=*; node ./server/ollama-server.js",
"new": "modern new",
"deploy": "node deploy.js",
"lint": "modern lint"
},
"engines": {
"node": ">=14.17.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"node --max_old_space_size=8192 ./node_modules/eslint/bin/eslint.js --fix --color --cache --quiet"
],
"*.{js,jsx,mjs,mjsx,cjs,cjsx}": [
"node --max_old_space_size=8192 ./node_modules/eslint/bin/eslint.js --fix --color --cache --quiet"
]
},
"eslintIgnore": [
"node_modules/",
"dist/"
],
"dependencies": {
"@ant-design/icons": "^4.0.0",
"@modern-js/plugin-less": "^1.3.3",
"@modern-js/runtime": "^1.0.0",
"@xyflow/react": "^12.3.6",
"ahooks": "^3.8.4",
"antd": "4.22.2",
"color-selector-react": "^0.3.0",
"context-menu-common-react": "~0.1.0-beta.2",
"dagre": "^0.8.5",
"jsonrepair": "^3.11.2",
"lodash": "^4.17.21",
"markdown-it": "^14.1.0",
"react-markdown": "^6.0.3",
"moment": "^2.29.4",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"reflect-metadata": "^0.1.13",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@modern-js/app-tools": "^1.0.0",
"@modern-js/tsconfig": "^1.0.0",
"@types/node": "^14",
"@types/react": "^17",
"@types/react-dom": "^17",
"@types/dagre": "^0.7.52",
"husky": "4.3.8",
"lint-staged": "^11.2.6",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"typescript": "^4"
},
"modernConfig": {
"runtime": {
"router": true,
"state": true
}
}
}