-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.18 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
67
68
69
70
71
{
"name": "@parallel-fi/wallet-services",
"version": "1.0.18",
"description": "",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"files": [
"lib/"
],
"scripts": {
"build": "npx tsc -p tsconfig.json",
"build:global": "npx tsc -p tsconfig.json && npx tsc -p tsconfig-cjs.json",
"build-local:watch": "npx tsc-watch --onSuccess \"yalc push\"",
"clean": "npx rimraf lib/",
"prepublish": "npm run clean && npm run build:global",
"lint": "eslint . --quiet --fix --ext .ts",
"test": "cross-env NODE_ENV=test jest --coverage",
"test:watch": "cross-env NODE_ENV=test jest --watch-all",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/parallel-finance/wallet-services.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/parallel-finance/wallet-services/issues"
},
"homepage": "https://github.com/parallel-finance/wallet-services#readme",
"devDependencies": {
"@polkadot/types": "9.14.2",
"@types/jest": "27.4.1",
"@types/node": "17.0.29",
"@typescript-eslint/eslint-plugin": "5.17.0",
"@typescript-eslint/parser": "5.17.0",
"cross-env": "^7.0.3",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jest": "26.1.4",
"eslint-plugin-lodash": "7.4.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-promise": "5.2.0",
"husky": "^8.0.1",
"jest": "27.5.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "27.1.4",
"ts-node": "^10.9.1",
"tsc-watch": "^5.0.3",
"typescript": "4.6.3"
},
"dependencies": {
"@parallel-finance/type-definitions": "1.7.8",
"@polkadot/api": "9.14.2",
"@polkadot/hw-ledger": "10.1.3",
"@talismn/chaindata": "github:TalismanSociety/chaindata#9b1fbf9a946a35666d5c19ed95e5f794941cd817",
"axios": "0.27.2",
"bignumber.js": "9.0.2",
"bip39": "3.0.4",
"crypto-js": "4.1.1",
"scrypt-js": "3.0.1",
"tslib": "^2.4.0",
"web3-utils": "1.7.5",
"whatwg-fetch": "^3.6.2"
}
}