-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathpackage.json
42 lines (42 loc) · 1.29 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
{
"name": "massa-web3-workspace",
"version": "1.0.0",
"scripts": {
"prepare": "husky install",
"test": "jest --forceExit --detectOpenHandles",
"test:cov": "npm run test:cov --ws --if-present",
"test:all": "npm run test:all --ws --if-present",
"build": "npm run build --ws --if-present",
"lint": "eslint . && npm run check-types --ws",
"lint:fix": "eslint . --fix && npm run check-types --ws",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"fmt": "npm run lint:fix && npm run prettier:fix",
"fmt:check": "npm run lint && npm run prettier"
},
"devDependencies": {
"@massalabs/eslint-config": "^0.0.10",
"@types/jest": "^29.5.5",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"bignumber.js": "^9.1.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^48.0.4",
"husky": "^8.0.0",
"lint-staged": "^15.0.1",
"prettier": "^3.2.4",
"typescript": "^4.9.5"
},
"workspaces": [
"packages/web3-utils",
"packages/massa-web3"
],
"repository": {
"type": "git",
"url": "https://github.com/massalabs/massa-web3.git"
},
"bugs": {
"url": "https://github.com/massalabs/massa-web3/issues"
},
"homepage": "https://github.com/massalabs/massa-web3#readme"
}