-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.11 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.11 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
{
"name": "1byte-react-design",
"version": "1.14.0",
"description": "A simple React UI library",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"license": "MIT",
"scripts": {
"build": "webpack --config webpack.config.js",
"test": "yalc publish --push --no-scripts --files .",
"tsc": "tsc -p tsconfig.json",
"test:publish": "pnpm install --no-frozen-lockfile && webpack --config webpack.config.js"
},
"peerDependencies": {
"react": "^18.0.0",
"react-router": "^7.0.0",
"yup": "1.7.0",
"i18next": "^25.5.3"
},
"dependencies": {
"@ant-design/cssinjs": "^1.24.0",
"@ant-design/cssinjs-utils": "^1.1.3",
"@ant-design/icons": "^6.0.1",
"@ant-design/plots": "^2.6.4",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"antd": "^5.21.2",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"polished": "^4.3.1",
"rc-field-form": "^2.7.0",
"rc-image": "^7.12.0",
"rc-input-number": "^9.5.0",
"rc-slider": "^11.1.8",
"rc-table": "^7.53.0",
"rc-tree": "^5.13.1",
"react-hook-form": "^7.53.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"react-router": "^7.9.3",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.6.2",
"webpack": "^5.95.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"yup": "1.7.0"
},
"publishConfig": {
"access": "public"
}
}