-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (44 loc) · 1.14 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
{
"name": "broker_api",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/ze-xe/broker-API.git",
"author": "mubashirzebi <[email protected]>",
"license": "MIT",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"prod": "npm run build && npm run start",
"dev": "ts-node index.ts"
},
"dependencies": {
"@near-wallet-selector/core": "^7.8.2",
"axios": "^1.3.4",
"base64url": "^3.0.1",
"bn.js": "^5.2.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"elliptic": "^6.5.4",
"express": "^4.18.2",
"helmet": "^6.1.5",
"js-sha256": "^0.9.0",
"keccak256": "^1.0.6",
"morgan": "^1.10.0",
"near-api-js": "^1.1.0",
"node-cache": "^5.1.2"
},
"devDependencies": {
"@types/node-cache": "^4.2.5",
"@types/bn.js": "^5.1.1",
"@types/bs58": "^4.0.1",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.13",
"@types/elliptic": "^6.4.14",
"@types/express": "^4.17.17",
"@types/helmet": "^4.0.0",
"@types/morgan": "^1.9.4",
"@types/node": "^20.0.0",
"typescript": "^5.0.4"
}
}