-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 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
{
"author": {
"email": "[email protected]",
"name": "TrejGun",
"url": "https://ethberry.io/"
},
"dependencies": {
"@lerna/legacy-package-management": "8.1.9",
"lerna": "8.1.9",
"nx": "20.3.3"
},
"devDependencies": {
"@ethberry/eslint-config": "5.0.4",
"@types/node": "22.10.10",
"husky": "9.1.7",
"lint-staged": "15.4.2",
"prettier": "3.4.2",
"prettier-plugin-solidity": "1.4.2",
"typescript": "5.7.3"
},
"engines": {
"node": ">=22"
},
"license": "UNLICENSED",
"name": "@ethberry/contracts-erc998",
"repository": {
"type": "git",
"url": "https://github.com/ethberry/contracts-erc998"
},
"scripts": {
"bootstrap": "lerna bootstrap --concurrency 1 --hoist --ignore-scripts",
"build": "lerna run build --concurrency 1",
"clean": "sh scripts/clean.sh",
"lerna:changed": "lerna changed",
"lerna:publish": "lerna version patch --yes --ignore-scripts && lerna publish from-package --yes --exact --ignore-scripts",
"lerna:version": "lerna --version",
"lint": "eslint . --fix",
"precommit": "lint-staged",
"prepare": "husky",
"prettier": "prettier . --write",
"test": "sh scripts/test.sh"
},
"version": "1.0.0"
}