backend/package.json

44 lines
1.2 KiB
JSON
Raw Normal View History

2023-08-23 11:54:26 +00:00
{
"name": "backend",
"version": "1.0.0",
"private": true,
"homepage": "https://github.com/movie-web/backend",
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "nodemon -r tsconfig-paths/register src/main.ts",
"build": "npm run build:pre && npm run build:compile",
"start": "node dist/main.js",
"lint": "eslint --ext .ts,.js,.json,.tsx src/",
"lint:fix": "eslint --fix --ext .ts,.js,.json,.tsx src/",
"build:pre": "rimraf dist/",
"build:compile": "tsc && tsc-alias"
},
"devDependencies": {
"@types/node": "^20.5.3",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"nodemon": "^3.0.1",
2023-08-23 12:40:58 +00:00
"prettier": "^3.0.2",
2023-08-23 11:54:26 +00:00
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.7",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6"
2023-08-23 12:40:58 +00:00
},
"dependencies": {
"@fastify/cors": "^8.3.0",
"fastify": "^4.21.0",
"fastify-type-provider-zod": "^1.1.9",
"neat-config": "^2.0.0",
"type-fest": "^4.2.0",
"winston": "^3.10.0",
"winston-console-format": "^1.0.8",
"zod": "^3.22.2"
2023-08-23 11:54:26 +00:00
}
}