-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.69 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
{
"name": "lido-nestjs-modules",
"version": "0.0.0-semantic-release",
"private": true,
"workspaces": [
"packages/*"
],
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"test": "jest --coverage --verbose",
"test:e2e": "jest --testRegex=.e2e-spec.ts",
"test:package": "./test.package.sh",
"test:watch": "jest --watch --coverage --verbose",
"lint": "eslint --ext ts .",
"typechain": "typechain --target=ethers-v5 --out-dir ./packages/contracts/src/generated ./packages/contracts/abi/*.json",
"postinstall": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@lidofinance/yarn-workspaces-list": "0.1.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@typechain/ethers-v5": "^9.0.0",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"dotenv": "^16.0.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.2.2",
"multi-semantic-release": "^3.0.1",
"prettier": "^2.5.1",
"rollup": "^2.75.6",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-typescript2": "^0.31.1",
"ts-jest": "^27.1.4",
"tslib": "^2.4.1",
"typechain": "^7.0.0",
"typescript": "^4.5.5"
},
"lint-staged": {
"./**/src/**/*.ts": [
"yarn eslint --max-warnings=0",
"yarn jest --verbose --bail --findRelatedTests"
],
"./**/*.{ts,js,md,json}": [
"prettier --write"
]
},
"packageManager": "[email protected]"
}