shellphone.app/api/package.json

62 lines
1.4 KiB
JSON
Raw Normal View History

2021-06-01 21:13:51 +00:00
{
"name": "virtual-phone-number-api",
"version": "0.0.1",
"description": "",
"main": "dist/server.js",
"scripts": {
"watch-server": "nodemon --ignore src/__tests__/ --watch src -e ts,tsx --exec ts-node src/server.ts",
"serve": "node dist/server.js",
"build": "tsc",
"start": "npm run serve",
"test": "jest",
"test:coverage": "jest --collect-coverage",
"test:watch": "jest --watch"
},
"engines": {
"node": ">=14",
"npm": ">=6"
},
"author": "Mokhtar Mial",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/koa": "^2.13.2",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-helmet": "^6.0.2",
"@types/koa__router": "^8.0.4",
"@types/koa__cors": "^3.0.2",
"@types/node": "^14.17.1",
"jest": "^27.0.1",
"nodemon": "^2.0.7",
"ts-jest": "^27.0.1",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"dependencies": {
"@koa/cors": "3.1.0",
"@koa/router": "10.0.0",
"@lifeomic/twilio-webhook-validator-koa": "^1.2.0",
"class-validator": "0.13.1",
"dotenv": "10.0.0",
"koa": "2.13.1",
"koa-bodyparser": "4.3.0",
"koa-helmet": "6.1.0",
"pg": "8.6.0",
"reflect-metadata": "0.1.13",
"twilio": "^3.63.0",
"typeorm": "0.2.32",
"winston": "3.3.3"
},
"jest": {
"roots": [
"<rootDir>"
],
"testMatch": [
"**/__tests__/**/*.+(ts|tsx|js)"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
}
}
}