forked from kima-finance/kima-transaction-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.31 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
{
"name": "kima-transaction-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ENV=test jest --testTimeout=10000",
"dev": "cross-env NODE_ENV=development nodemon",
"build": "rimraf ./build && tsc",
"start": "npm run build && node build/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.14",
"@types/jest": "^29.5.0",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.11.4",
"@types/node-fetch": "^2.6.2",
"@types/uuid": "^9.0.4",
"cross-env": "^7.0.3",
"jest": "^29.5.0",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@kimafinance/kima-transaction-api": "^1.0.30-beta.1",
"@solana/web3.js": "^1.66.2",
"axios": "^1.1.3",
"bitcoin-address-validation": "^2.2.3",
"body-parser": "^1.20.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"i": "^0.3.7",
"jsonwebtoken": "^8.5.1",
"npm": "^9.1.2",
"uuid": "^9.0.1",
"web3": "^1.8.0"
}
}