generated from claretnnamocha/template-2
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
75 lines (75 loc) · 2.22 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
72
73
74
75
{
"name": "my-custodial-wallet",
"version": "1.0.0",
"description": "Sample custodial crypto wallet api written with Nodejs, Typescript and Express",
"displayName": "My Custodial Wallet",
"main": "src/index.ts",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "nodemon --exec ts-node src/index.ts",
"postinstall": "cd 'src/helpers' && yarn"
},
"keywords": [],
"author": "Claret Nnamocha <[email protected]>",
"license": "ISC",
"dependencies": {
"@bull-board/api": "^3.6.0",
"@bull-board/express": "^3.6.0",
"@types/bcryptjs": "^2.4.2",
"@types/big.js": "^6.1.2",
"@types/bitcore-lib": "^0.15.3",
"@types/bull": "^3.15.5",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.12",
"@types/express-form-data": "^2.0.1",
"@types/joi-phone-number": "^5.0.1",
"@types/jsonwebtoken": "^8.5.1",
"@types/node-fetch": "^2.5.8",
"@types/swagger-jsdoc": "^6.0.0",
"@types/swagger-ui-express": "^4.1.2",
"@types/uuid": "^8.3.0",
"@uniswap/sdk": "^3.0.3",
"@uniswap/sdk-core": "^3.0.1",
"@uniswap/smart-order-router": "^2.5.13",
"@uniswap/v3-sdk": "^3.8.1",
"bcryptjs": "^2.4.3",
"big.js": "^6.1.1",
"bitcore-lib": "^8.25.25",
"body-parser": "^1.19.0",
"bull": "^4.0.0",
"content-security-policy": "^0.3.4",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"ethereumjs-tx": "^2.1.2",
"ethers": "^5.5.3",
"evm-bn": "^1.1.1",
"express": "^4.17.1",
"express-form-data": "^2.0.14",
"joi": "^17.4.0",
"joi-password-complexity": "^5.1.0",
"joi-phone-number": "^5.0.1",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.2.5",
"node-fetch": "2.6.7",
"permissions-policy": "^0.6.0",
"pg": "^8.5.1",
"randomstring": "^1.2.1",
"realistic-structured-clone": "^2.0.3",
"referrer-policy": "^1.2.0",
"sequelize": "^6.5.1",
"sequelize-typescript": "^2.1.0",
"solc": "0.7.6",
"strict-transport-security": "^0.3.0",
"swagger-jsdoc": "^6.0.2",
"swagger-ui-express": "^4.1.6",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"uuid": "^8.3.2",
"web3": "^1.7.0",
"x-frame-options": "^1.0.0"
},
"devDependencies": {
"nodemon": "^2.0.7"
}
}