46 lines
1.3 KiB
JSON
46 lines
1.3 KiB
JSON
{
|
|
"name": "verify-india-api",
|
|
"version": "1.0.0",
|
|
"description": "REST APIs for Indian data verification",
|
|
"main": "src/index.js",
|
|
"scripts": {
|
|
"start": "node src/index.js",
|
|
"dev": "nodemon src/index.js",
|
|
"migrate": "node src/database/migrate.js up",
|
|
"migrate:down": "node src/database/migrate.js down",
|
|
"migrate:status": "node src/database/migrate.js status",
|
|
"migrate:pincodes": "node src/database/migrate-pincodes.js",
|
|
"create-test-key": "node scripts/create-test-api-key.js",
|
|
"create-live-key": "node scripts/create-live-api-key.js",
|
|
"check-pan-config": "node scripts/check-pan-config.js",
|
|
"test-pan-api": "node scripts/test-pan-api.js",
|
|
"test-setu-static": "node scripts/test-setu-api-static.js",
|
|
"test-localhost-pan": "node scripts/test-localhost-pan.js"
|
|
},
|
|
"keywords": [
|
|
"api",
|
|
"verification",
|
|
"india"
|
|
],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"axios": "^1.6.2",
|
|
"bcryptjs": "^2.4.3",
|
|
"cors": "^2.8.5",
|
|
"csv-parser": "^3.2.0",
|
|
"dotenv": "^16.3.1",
|
|
"express": "^4.18.2",
|
|
"helmet": "^7.1.0",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"morgan": "^1.10.0",
|
|
"pg": "^8.16.3",
|
|
"redis": "^4.6.10",
|
|
"sequelize": "^6.37.7",
|
|
"uuid": "^9.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^3.0.2"
|
|
}
|
|
}
|