-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
138 lines (138 loc) · 4.48 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "@lidofinance/lido-ui",
"version": "3.0.0-next.17",
"homepage": "https://github.com/lidofinance/ui",
"repository": {
"type": "git",
"url": "https://github.com/lidofinance/ui.git"
},
"bugs": {
"url": "https://github.com/lidofinance/ui/issues"
},
"engines": {
"node": ">=20.0.0 <21.0.0"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.js"
}
},
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "storybook dev -p 5555",
"build-storybook": "storybook build",
"build": "zx ./scripts/build.cjs",
"test": "node --experimental-vm-modules ./node_modules/.bin/jest",
"test:coverage": "node --experimental-vm-modules ./node_modules/.bin/jest coverage",
"lint": "set +e; yarn lint:js; yarn lint:css; set -e",
"lint:fix": "set +e; yarn lint:js:fix; yarn lint:css:fix; set -e",
"lint:js": "eslint .",
"lint:js:fix": "eslint --fix .",
"lint:css": "stylelint '**/*Styles.tsx'",
"lint:css:fix": "yarn lint:css --fix",
"types": "tsc --noEmit",
"prepare": "husky install",
"release": "semantic-release",
"release:dry": "yarn release --dry-run",
"icons:convert": "node ./packages/icons/converter/index.js"
},
"peerDependencies": {
"react": "16 || 17 || 18",
"react-dom": "16 || 17 || 18",
"react-is": "16 || 17 || 18",
"styled-components": "^5.3.5"
},
"dependencies": {
"@styled-system/should-forward-prop": "5.1.5",
"react-collapsed": "3.0.2",
"react-jazzicon": "^1.0.4",
"react-toastify": "7.0.4",
"react-transition-group": "4",
"styled-system": "5.1.5",
"ua-parser-js": "^1.0.35",
"use-callback-ref": "1.2.5"
},
"devDependencies": {
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.2.3",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"@semrel-extra/npm": "^1.2.2",
"@storybook/addon-docs": "^7.2.3",
"@storybook/addon-essentials": "^7.2.3",
"@storybook/addons": "^7.2.3",
"@storybook/cli": "^7.2.3",
"@storybook/react": "^7.2.3",
"@storybook/react-webpack5": "^7.2.3",
"@storybook/storybook-deployer": "^2.8.16",
"@storybook/theming": "^7.2.3",
"@svgr/core": "5.5.0",
"@svgr/plugin-jsx": "5.5.0",
"@svgr/plugin-prettier": "5.5.0",
"@svgr/plugin-svgo": "5.5.0",
"@testing-library/react": "^13.3.0",
"@types/jest": "^29.5.3",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"@types/react-is": "17.0.2",
"@types/react-transition-group": "^4.4.6",
"@types/styled-components": "^5.1.26",
"@types/styled-system": "^5.1.16",
"@types/styled-system__should-forward-prop": "^5.1.2",
"@types/ua-parser-js": "^0.7.36",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"babel-plugin-styled-components": "^2.1.4",
"browserslist": "^4.21.10",
"conventional-changelog-conventionalcommits": "4.6.3",
"eslint": "8.46.0",
"eslint-config-prettier": "9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-react": "7.33.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-storybook": "^0.6.13",
"husky": "^7.0.1",
"jest": "^29.0.1",
"jest-environment-jsdom": "^29.0.1",
"jest-haste-map": "^29.0.1",
"jest-resolve": "^29.0.1",
"jest-runner": "^29.0.1",
"jest-styled-components": "^7.1.1",
"lint-staged": "11.1.2",
"postcss": "^8.4.27",
"postcss-styled-syntax": "^0.4.0",
"prettier": "^3.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-is": "18.2.0",
"rimraf": "3.0.2",
"rollup": "3.29.1",
"semantic-release": "^19.0.5",
"storybook": "^7.2.3",
"storybook-addon-swc": "^1.2.0",
"storybook-dark-mode": "^3.0.1",
"styled-components": "^5.3.5",
"stylelint": "^15.10.2",
"stylelint-config-standard": "^34.0.0",
"stylelint-prettier": "^4.0.2",
"ts-jest": "^29.1.1",
"tslib": "2.3.1",
"typescript": "4.8",
"zx": "^7.0.8"
}
}