-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
65 lines (65 loc) · 1.93 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
{
"name": "lido-js-sdk",
"version": "0.0.0-semantic-release",
"private": true,
"workspaces": [
"packages/*"
],
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"test": "jest --coverage",
"test:watch": "jest --watch --coverage",
"lint": "eslint --ext ts,tsx .",
"postinstall": "husky install && yarn typechain",
"typechain": "yarn workspace @lido-sdk/contracts run typechain"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@qiwi/multi-semantic-release": "^3.16.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"@types/babel__core": "^7.1.19",
"@types/babel__preset-env": "^7.9.2",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/jest": "^27.0.2",
"@types/react": "^17.0.45",
"@types/react-dom": "^17.0.17",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"babel-jest": "^27.2.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.4",
"jest": "^27.2.1",
"lint-staged": "^11.1.2",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.57.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-typescript2": "0.32.1",
"tslib": "2.4.1",
"typescript": "^4.4.3",
"yarn-workspaces-list": "^0.2.0"
},
"lint-staged": {
"./**/src/**/*.{ts,tsx}": [
"eslint --max-warnings=0",
"jest --bail --findRelatedTests"
],
"./**/*.{ts,tsx,js,jsx,md,json}": [
"prettier --write"
]
},
"packageManager": "[email protected]"
}