orbit_docs/backend/package.json
2025-04-02 00:10:02 +02:00

32 lines
762 B
JSON

{
"name": "backend",
"version": "1.0.0",
"description": "Backend pour OrbitDocs - Clone de Notion",
"main": "dist/index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@prisma/client": "^5.0.0",
"@types/bcryptjs": "^2.4.6",
"bcryptjs": "^3.0.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node": "^18.15.11",
"prisma": "^5.0.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4"
}
}