Files
nirvana-v4/packages/api/package.json
T
2022-06-08 05:44:29 -05:00

42 lines
1.1 KiB
JSON

{
"name": "@nirvana/new_api_model",
"version": "1.0.0",
"main": "index.ts",
"license": "MIT",
"scripts": {
"core": "rm -rf ./core && cp -r ../core/src ./core/",
"dev": "NODE_ENV=development nodemon",
"start:dev": "ts-node ./src/index.ts",
"lint": "eslint --ext .ts,.tsx .",
"build": "npm run lint && tsc -p .",
"start": "node dist/index.js",
"gcp-build": "npm run build"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"eslint-plugin-import": "^2.25.0",
"nodemon": "^2.0.15",
"typescript": "^4.6.2"
},
"dependencies": {
"@sentry/node": "^7.0.0",
"@sentry/tracing": "^7.0.0",
"@types/jsonwebtoken": "^8.5.8",
"axios": "^0.26.1",
"cors": "^2.8.5",
"express": "^4.17.3",
"firebase": "^9.8.2",
"google-auth-library": "^7.14.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.4.1",
"morgan": "^1.10.0",
"socket.io": "^4.4.1",
"ts-node": "^10.7.0"
}
}