task_receipts/server/package.json

43 lines
1.1 KiB
JSON

{
"name": "task-receipts-server",
"version": "1.0.0",
"description": "Task Receipts Server",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@apollo/server": "^4.10.0",
"@task-receipts/shared": "file:../shared",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"graphql": "^16.8.1",
"knex": "^3.1.0",
"pg": "^8.11.3",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@types/pg": "^8.11.2",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}