-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.1 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "notifier-rest",
"version": "1.0.0",
"description": "temporary event emition notifier",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"repository": "https://github.com/xp-network/notifier-rest",
"license": "MIT",
"keywords": [],
"scripts": {
"build": "tsc",
"dev": "yarn run build && node build/main/main.js",
"hash": "node hash.js",
"start": "node build/main/main.js",
"prepare": "husky install"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"@dfinity/agent": "^0.11.3",
"@dfinity/candid": "^0.11.3",
"@dfinity/principal": "^0.11.3",
"@ethersproject/experimental": "^5.5.0",
"@ethersproject/providers": "^5.5.3",
"@mikro-orm/core": "^4.5.9",
"@mikro-orm/mongodb": "^4.5.9",
"@types/express": "^4.17.12",
"@types/ledgerhq__hw-transport-node-hid": "4.22.2",
"async-mutex": "^0.4.0",
"axios": "^0.26.0",
"bignumber.js": "^9.1.1",
"cors": "^2.8.5",
"cross-fetch": "^3.1.5",
"crypto": "^1.0.1",
"dotenv": "^10.0.0",
"ethers": "5.7.2",
"express": "^4.17.1",
"socket.io": "^4.1.2",
"ton-x": "^2.1.0",
"xp.network": "git+https://github.com/xp-network/xpjs#bleeding-edge",
"xpnet-web3-contracts": "git+https://github.com/xp-network/XP.network-HECO-Migration#dist-erc1155"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^3.0.2",
"eslint-plugin-import": "^2.22.0",
"husky": "^8.0.0",
"prettier": "^2.1.1",
"pretty-quick": "^3.1.3",
"typedoc": "^0.22.12",
"typescript": "^4.5.5"
},
"files": [
"build/main",
"build/module",
"!**/*.spec.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"prettier": {
"singleQuote": true
}
}