-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
66 lines (65 loc) · 1.72 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
66
{
"name": "@pollum-io/sysweb3",
"version": "1.0.34",
"description": "Syscoin Web3 JavaScript API",
"author": "Pali Wallet",
"email": "[email protected]",
"license": "MIT",
"homepage": "https://github.com/Pollum-io/sysweb3#readme",
"engines": {
"yarn": ">= 1.0.0"
},
"private": true,
"workspaces": [
"packages/*/dist/*"
],
"scripts": {
"format": "prettier --write .",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prepare": "husky install",
"test": "jest",
"type-check": "tsc --pretty --noEmit"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pollum-io/sysweb3.git"
},
"bugs": {
"url": "https://github.com/Pollum-io/sysweb3/issues"
},
"devDependencies": {
"dotenv": "^16.0.3",
"@babel/core": "^7.17.4",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/crypto-js": "^4.1.0",
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.178",
"@types/node": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.4.1",
"minimist": "1.2.6",
"prettier": "^2.6.0",
"prettier-eslint": "^13.0.0",
"standard-version": "^9.3.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"tslib": "^2.4.0",
"typescript": "^4.6.2",
"web3": "^1.7.0",
"web3-core": "^1.7.1",
"web3-utils": "^1.7.0"
}
}