-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
82 lines (82 loc) · 2.14 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
{
"name": "lido-ethereum-sdk",
"version": "0.0.0-development",
"main": "index.js",
"repository": "[email protected]:lidofinance/lido-ethereum-sdk.git",
"license": "MIT",
"private": true,
"keywords": [
"lido",
"sdk",
"ethereum"
],
"scripts": {
"dev": "yarn playground:dev",
"w-info": "yarn workspaces info",
"build": "yarn workspaces foreach -pt run build",
"build:packages": "yarn workspaces foreach --no-private run build",
"types": "yarn workspaces foreach -pt run types",
"test": "yarn workspaces foreach -pt run test",
"lint": "yarn workspaces foreach -pt run lint",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@lidofinance/eslint-config": "^0.35.0",
"@next/eslint-plugin-next": "^14.0.1",
"@qiwi/multi-semantic-release": "7.1.1",
"@typescript-eslint/eslint-plugin": "^5",
"@typescript-eslint/parser": "^5.46.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-import-resolver-typescript": "^3",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-eslint-comments": "^3",
"eslint-plugin-import": "^2",
"eslint-plugin-jest": "^27",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4",
"eslint-plugin-promise": "^6",
"eslint-plugin-react": "^7",
"eslint-plugin-react-hooks": "^4",
"eslint-plugin-sonarjs": "^0.14.0",
"eslint-plugin-unicorn": "^45",
"husky": "^8.0.3",
"prettier": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.4.5"
},
"resolutions": {
"postcss": "8.4.31",
"crypto-js": "4.2.0"
},
"workspaces": [
"packages/*",
"playground",
"examples/*",
"docs"
],
"release": {
"branches": [
"main",
{
"name": "develop",
"channel": "alpha",
"prerelease": "alpha"
}
]
},
"multi-release": {
"sequentialInit": true,
"deps": {
"bump": "override",
"release": "patch"
}
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
}
}