-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.61 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.61 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
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@hyperbridge/node",
"version": "1.4.6",
"description": "",
"main": "index.ts",
"types": "types.ts",
"scripts": {
"build": "npm-run-all dist",
"clean": "del-cli ./dist && make-dir ./dist",
"dist": "npm-run-all clean tsc:*",
"publish": "npm publish --access=public",
"test": "jest --coverage --config=jest.unit.config.js",
"test:watch": "jest --watch --collect-coverage --config=jest.unit.config.js",
"tsc:1": "rm -rf ./build && mkdir ./build && mkdir ./build/contracts && mkdir ./build/data && mkdir ./build/data/generated && cp package.json ./build && cp ./contracts/* ./build/contracts && cp ./data/generated/* ./build/data/generated && NODE_ENV=production tsc"
},
"dependencies": {
"@ethersproject/address": "^5",
"@ethersproject/constants": "^5",
"@ethersproject/contracts": "^5",
"@ethersproject/networks": "^5",
"@ethersproject/providers": "^5",
"@ethersproject/solidity": "^5",
"@trpc/server": "11.0.0-rc.660",
"@trpc/client": "11.0.0-rc.660",
"@truffle/hdwallet-provider": "^1",
"@typechain/ethers-v4": "^1",
"axios": "^1",
"compromise": "^14",
"cross-fetch": "^4",
"crypto-js": "^4",
"dayjs": "^1",
"es6-promise": "^4",
"ethers": "^5",
"franc": "^6",
"fs-jetpack": "^4",
"js-md5": "^0",
"knex": "^0",
"langdetect": "^0",
"lodash": "^4",
"lokijs": "^1",
"moment": "^2",
"mongoose": "^8",
"natural": "^7",
"node-fetch": "^3",
"objection": "^2",
"openai": "^4",
"pluralize": "^8",
"puppeteer": "^22",
"shortid": "^2",
"socket.io-client": "^4",
"timestring": "^7",
"utf8": "^3",
"uuid": "^9",
"web3": "^1",
"zod": "^3",
"rxjs": "^7",
"fast-safe-stringify": "^2",
"@types/socket.io-client": "~3.0.0",
"otplib": "~12.0.1",
"mongoose-autopopulate": "~1.1.0"
},
"devDependencies": {
"@types/common-tags": "^1",
"@types/ethereum-protocol": "^1",
"@types/jest": "^29",
"@types/lodash": "^4",
"@types/mongoose": "^5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/web3": "^1",
"@typescript-eslint/eslint-plugin": "^8",
"@typescript-eslint/parser": "^8",
"del-cli": "^5",
"eslint": "^8",
"eslint-config-marine": "^3",
"eslint-config-prettier": "^8",
"eslint-plugin-prettier": "^3",
"eslint-plugin-react": "^7",
"eslint-plugin-react-hooks": "^4",
"jest": "^29",
"jest-environment-jsdom": "^29",
"jest-html-reporters": "^2",
"jest-junit": "^12",
"make-dir-cli": "^3",
"npm-run-all": "^4",
"ts-jest": "^29"
}
}