-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
108 lines (108 loc) · 3.53 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
104
105
106
107
108
{
"name": "kubed",
"version": "0.0.0",
"private": true,
"description": "Kube Design for KubeSphere Console",
"repository": "https://github.com/kubesphere/kube-design",
"license": "MIT",
"main": "index.js",
"workspaces": [
"packages/*",
"docs"
],
"scripts": {
"build": "esno scripts/build",
"build:all": "yarn build all",
"build:docs": "cd ./docs && npm run build",
"build:icons": "cd packages/icons && npm run build",
"clean": "rimraf packages/*/{esm,cjs,lib,dist} packages/**/*.tsbuildinfo",
"docs:docgen": "esno scripts/docgen",
"postinstall": "npm run docs:docgen && npm run build:icons",
"jest": "jest",
"lint": "eslint src --ext .ts,.tsx",
"release": "changeset publish",
"start:docs": "cd ./docs && npm run dev",
"storybook": "storybook dev -p 7001 -c configs/.storybook --no-open",
"syncpack": "syncpack list-mismatches",
"test": "npm run syncpack && npm run typecheck && npm run lint && npm run jest",
"typecheck": "tsc --noEmit"
},
"resolutions": {
"**/@babel/preset-env": "~7.15.8"
},
"dependencies": {
"dayjs": "^1.10.7",
"lodash": "^4.17.21",
"prism-react-renderer": "^1.2.1",
"react": "^18.3.1",
"react-router-dom": "^5.2.0",
"styled-components": "^5.3.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-typescript": "^8.2.1",
"@storybook/addon-docs": "^8.2.3",
"@storybook/nextjs": "^8.2.3",
"@storybook/react": "^8.2.3",
"@sucrase/jest-plugin": "^2.1.0",
"@testing-library/react-hooks": "^7.0.0",
"@types/enzyme": "^3.10.8",
"@types/fs-extra": "^9.0.11",
"@types/jest": "^26.0.23",
"@types/jest-axe": "^3.5.1",
"@types/lodash": "^4.14.172",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-router-dom": "^5.1.7",
"@types/react-transition-group": "^4.4.1",
"@types/resize-observer-browser": "^0.1.5",
"@types/styled-components": "^5.1.11",
"@types/yargs": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.1",
"chalk": "^4.1.1",
"enzyme": "^3.11.0",
"esbuild": "^0.12.5",
"esbuild-jest": "^0.5.0",
"eslint": "^7.27.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"esno": "^0.6.0",
"execa": "^5.0.1",
"fast-glob": "^3.2.5",
"fs-extra": "^10.0.0",
"gzip-size": "^6.0.0",
"jest": "^26.6.3",
"jest-axe": "^4.1.0",
"new-github-release-url": "^1.0.0",
"open": "^8.2.0",
"prettier": "^2.3.2",
"react-docgen-typescript": "2.1.0",
"react-dom": "^18.3.1",
"rimraf": "^3.0.2",
"rollup": "^2.50.5",
"rollup-plugin-esbuild": "^4.2.3",
"rollup-plugin-node-externals": "^2.2.0",
"rollup-plugin-visualizer": "^5.5.0",
"simple-git": "^2.39.0",
"storybook": "^8.2.3",
"storybook-addon-turbo-build": "^2.0.1",
"syncpack": "^5.7.11",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "4.8.4",
"yargs": "^17.0.1"
}
}