* Setup a Nodejs project with Typescript * Implement an API for generating access token using sumsub * Add cors * Add usage to instructions * Pass kyc level and ttl in .env * Add a Dockerfile --------- Co-authored-by: Adw8 <adwaitgharpure@gmail.com>
26 lines
532 B
JSON
26 lines
532 B
JSON
{
|
|
"name": "testnet-onboarding-api",
|
|
"version": "0.1.0",
|
|
"main": "dist/index.js",
|
|
"license": "UNLICENSED",
|
|
"private": true,
|
|
"dependencies": {
|
|
"axios": "^1.7.2",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.4.5",
|
|
"express": "^4.19.2",
|
|
"form-data": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.17",
|
|
"@types/express": "^4.17.21",
|
|
"@types/node": "^20.14.12",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.5.4"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node dist/index.js"
|
|
}
|
|
}
|