package.json
2.19 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
{
"name": "qx-designer-dataflow",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "vite --config ./config/vite.config.js",
"build": "webpack build --config ./config/webpack.prod.js",
"preview": "webpack-dev-server --config ./config/webpack.dev.js",
"prepare": "husky install",
"lint-staged": "lint-staged",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'"
},
"lint-staged": {
"src/**/*.{js,jsx,less,md,json}": [
"prettier --write"
],
"src/**/*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@ant-design/icons": "^5.2.5",
"@qx/common": "0.2.31-alpha.5",
"@qx/flow": "1.0.0-alpha.10",
"@qx/icon-btn": "^0.0.13",
"@qx/ui": "0.0.3-beta.1",
"@qx/utils": "0.0.56-alpha.4",
"ahooks": "^3.7.8",
"antd": "^5.8.4",
"classnames": "^2.3.2",
"hox": "^2.1.1",
"lodash-es": "^4.17.21",
"normalize.css": "^8.0.1",
"react": "^18.2.0",
"react-cookies": "^0.1.1",
"react-dom": "^18.2.0",
"react-router": "^6.15.0",
"react-router-dom": "^6.15.0",
"react-sortablejs": "^6.1.4",
"sortablejs": "^1.15.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@qx/types": "^0.0.2",
"@svgr/webpack": "^8.1.0",
"@types/lodash-es": "^4.17.8",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@types/uuid": "^9.0.2",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.3",
"less": "^4.2.0",
"less-loader": "^11.1.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.2",
"style-loader": "^3.3.3",
"ts-loader": "^9.4.4",
"typescript": "^5.2.2",
"url-loader": "^4.1.1",
"vite": "^4.4.9",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.9.0"
}
}