forked from lidofinance/ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.01 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
{
"name": "lido-ui-components",
"version": "0.0.0-semantic-release",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "start-storybook -p 5555 -s .storybook/public",
"build-storybook": "build-storybook -s .storybook/public",
"build": "yarn combine && rollup -c",
"build:dev": "rollup -c -w",
"combine": "node ./combinePackages.js",
"test": "jest",
"test:coverage": "jest coverage",
"lint": "eslint --ext ts,tsx,js,jsx .",
"postinstall": "husky install"
},
"devDependencies": {
"@babel/cli": "7.14.8",
"@babel/core": "7.15.0",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/plugin-proposal-private-methods": "7.14.5",
"@babel/plugin-proposal-private-property-in-object": "7.14.5",
"@babel/preset-env": "7.15.0",
"@babel/preset-react": "7.14.5",
"@babel/preset-typescript": "7.15.0",
"@commitlint/cli": "13.1.0",
"@commitlint/config-conventional": "13.1.0",
"@lidofinance/yarn-workspaces-list": "0.1.1",
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-node-resolve": "13.0.4",
"@storybook/addon-docs": "6.3.7",
"@storybook/addon-essentials": "6.3.7",
"@storybook/addons": "6.3.7",
"@storybook/react": "6.3.7",
"@storybook/storybook-deployer": "2.8.10",
"@storybook/theming": "6.3.7",
"@types/jest": "27.0.1",
"@types/react": "17.0.19",
"@types/react-dom": "17.0.9",
"@types/react-is": "17.0.2",
"@typescript-eslint/eslint-plugin": "4.29.2",
"@typescript-eslint/parser": "4.29.2",
"babel-core": "6.26.3",
"babel-jest": "27.0.6",
"babel-loader": "8.2.2",
"babel-plugin-styled-components": "1.13.2",
"conventional-changelog-conventionalcommits": "4.6.3",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-react": "7.24.0",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "7.0.2",
"jest": "27.0.6",
"jest-environment-jsdom": "27.0.6",
"jest-haste-map": "27.0.6",
"jest-resolve": "27.0.6",
"jest-runner": "27.0.6",
"jest-styled-components": "7.0.5",
"lint-staged": "11.1.2",
"multi-semantic-release": "2.11.0",
"prettier": "2.3.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-is": "17.0.2",
"rimraf": "3.0.2",
"rollup": "2.56.3",
"rollup-plugin-delete": "2.0.0",
"rollup-plugin-typescript2": "0.30.0",
"storybook-dark-mode": "1.0.8",
"styled-components": "5.3.0",
"tslib": "2.3.1",
"typescript": "4.3.5",
"webpack": "5.51.1"
},
"lint-staged": {
"./**/*.{ts,tsx,js,jsx}": [
"eslint --max-warnings=0",
"jest --bail --findRelatedTests"
],
"./**/*.{ts,tsx,js,jsx,md,json}": [
"prettier --write"
],
"*": "yarn combine"
},
"homepage": "https://github.com/lidofinance/ui",
"repository": {
"type": "git",
"url": "https://github.com/lidofinance/ui.git"
},
"bugs": {
"url": "https://github.com/lidofinance/ui/issues"
}
}