-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.5 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.5 KB
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
{
"name": "brlc-monorepo",
"description": "BRLC monorepo",
"scripts": {
"prepare": "husky",
"prettier:fix": "prettier --write \"**/*.sol\"",
"prettier:check": "prettier --check \"**/*.sol\"",
"eslint:fix": "eslint --fix \"**/*.{js,ts}\"",
"eslint:check": "eslint",
"flatten:contract": "./scripts/flatten-contract.bash",
"get-e2e-contracts": "./scripts/get-contracts-for-stratus-test.js",
"collect-deployments": "ts-node scripts/collect-deployments/index.ts",
"test": "pnpm run -r test",
"test:coverage": "pnpm run -r test:coverage",
"build": "pnpm run -r build"
},
"lint-staged": {
"**/*.{js,ts}": [
"eslint --fix"
],
"**/*.sol": [
"prettier --write"
]
},
"type": "module",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/node": "^25.6.0",
"eslint": "^10.2.0",
"eslint-plugin-promise": "^7.2.1",
"globals": "^17.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.2",
"prettier-plugin-solidity": "^2.3.1",
"ts-node": "^10.9.2",
"typescript": "catalog:",
"typescript-eslint": "8.57.3-alpha.4"
},
"devEngines": {
"runtime": {
"name": "node",
"onFail": "error"
},
"packageManager": {
"name": "pnpm",
"onFail": "error"
}
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
}