-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
103 lines (103 loc) · 3 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
{
"name": "kitchen-comfyui",
"version": "1.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/canisminor1990/kitchen-comfyui.git"
},
"author": "canisminor1990 <[email protected]>",
"sideEffects": false,
"scripts": {
"build": "umi build",
"dev": "umi dev",
"dev:with-mock": "cross-env MOCK=true umi dev",
"docs": "typedoc --options typedoc.json",
"postinstall": "umi setup",
"lint": "eslint \"{src,test,mock}/**/*.{js,jsx,ts,tsx}\" --fix",
"prepare": "husky install",
"prettier": "prettier -c --write \"**/**\"",
"release": "semantic-release",
"setup": "umi setup",
"start": "npm run dev",
"stylelint": "stylelint \"src/**/*.{css,less,js,jsx,ts,tsx}\" --fix",
"test": "npm run lint",
"type-check": "tsc -p tsconfig-check.json"
},
"lint-staged": {
"*.{css,less}": [
"stylelint --fix",
"prettier --write"
],
"*.{md,json}": [
"prettier --write --no-error-on-unmatched-pattern"
],
"*.{js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{ts,tsx}": [
"eslint --fix",
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@ant-design/icons": "^5.2.6",
"@ant-design/pro-components": "^2.7.1",
"@floating-ui/react": "^0.26.9",
"@radix-ui/react-icons": "^1.3.0",
"antd": "^5.17.0",
"antd-style": "^3.6.1",
"exifr": "^7.1.3",
"react-json-view": "^1.21.3",
"react-use-websocket": "^4.8.1",
"reactflow": "^11.10.4",
"umi": "^4.2.2",
"zustand": "^4.5.2"
},
"devDependencies": {
"@commitlint/cli": "^17",
"@types/styled-components": "^5.1.34",
"@semantic-release/github": "^9.2.6",
"@types/lodash-es": "^4.17.10",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.22",
"@types/uuid": "^9.0.8",
"@umijs/lint": "^4.1.2",
"ahooks": "^3.7.10",
"babel-plugin-styled-components": "^2.1.4",
"commitlint": "^17",
"commitlint-config-gitmoji": "^2",
"cross-env": "^7",
"dayjs": "^1.11.10",
"eslint": "^8",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^2.2.1",
"husky": "^8",
"lint-staged": "^13.2.3",
"lodash-es": "^4.17.21",
"polished": "^4.3.1",
"postcss-less": "^6.0.0",
"postcss-styled-syntax": "^0.6.4",
"prettier": "^2",
"prettier-plugin-organize-imports": "^3",
"prettier-plugin-packagejson": "^2",
"query-string": "^8.1.0",
"re-resizable": "^6.9.11",
"react-layout-kit": "^1.9.0",
"react-rnd": "^10.4.10",
"semantic-release": "^21",
"semantic-release-config-gitmoji": "^1",
"styled-components": "^5.3.11",
"stylelint": "^15.11.0",
"stylelint-config-clean-order": "^5.4.2",
"stylelint-config-recommended": "^12.0.0",
"stylelint-order": "^6.0.4",
"typedoc": "^0.25.7",
"typedoc-github-wiki-theme": "^1.1.0",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.3.3",
"use-merge-value": "^1.2.0",
"uuid": "^9.0.1"
}
}