-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.02 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
76
{
"name": "api_v1",
"version": "1.0.0",
"description": "API for the Honey Finance protocol",
"main": "index.js",
"scripts": {
"dev": "set NODE_ENV=dev && ts-node-dev --respawn src/index.ts --watch",
"devRun": "set NODE_ENV=dev && ts-node src/index.ts --watch",
"build": "tsc",
"test": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/honey-protocol/api_v1.git"
},
"keywords": [
"NodeJS",
"Solana",
"Web3",
"Express",
"Honey",
"Finance",
"NFT"
],
"author": "Honey Finance",
"license": "ISC",
"bugs": {
"url": "https://github.com/honey-protocol/api_v1/issues"
},
"homepage": "https://github.com/honey-protocol/api_v1#readme",
"devDependencies": {
"@jest/globals": "^29.5.0",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/node": "^18.14.6",
"@types/supertest": "^2.0.12",
"dotenv": "^16.0.3",
"jest": "^29.5.0",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@dialectlabs/blockchain-sdk-solana": "^1.0.0",
"@dialectlabs/sdk": "^1.3.0",
"@honey-finance/sdk": "1.2.6",
"@jup-ag/core": "^4.0.0-beta.14",
"@metaplex-foundation/js": "^0.18.3",
"@msgpack/msgpack": "^3.0.0-beta2",
"@project-serum/anchor": "^0.26.0",
"@saberhq/token-utils": "^1.14.11",
"@solana/buffer-layout": "^4.0.1",
"@solana/spl-token": "^0.3.7",
"@solana/web3.js": "^1.73.3",
"@switchboard-xyz/switchboard-v2": "^0.0.174",
"@types/node-cron": "^3.0.7",
"bn.js": "^5.2.1",
"concurrently": "^7.6.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^6.7.0",
"global": "^4.4.0",
"helmet": "^6.0.1",
"hpp": "^0.2.3",
"jsbi": "^4.3.0",
"mongodb": "^5.1.0",
"mongoose": "^7.0.2",
"node-cron": "^3.0.2",
"pm2": "^5.3.0",
"react": "^18.2.0",
"xss-clean": "^0.1.1"
}
}