37 lines
938 B
JSON
37 lines
938 B
JSON
{
|
|
"name": "obsidian-note-sharing-server",
|
|
"version": "0.0.1",
|
|
"description": "",
|
|
"main": "server.js",
|
|
"scripts": {
|
|
"test": "echo 'No tests set up for the server.'",
|
|
"coverage": "echo 'No coverage set up for the server.'",
|
|
"build": "npx tsc",
|
|
"dev": "npx nodemon ./server.ts | npx pino-colada"
|
|
},
|
|
"author": "Maxime Cannoodt (mcndt)",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@prisma/client": "^4.0.0",
|
|
"dotenv": "^16.0.1",
|
|
"express": "^4.18.1",
|
|
"express-rate-limit": "^6.4.0",
|
|
"helmet": "^5.1.0",
|
|
"pino": "^8.1.0",
|
|
"pino-http": "^8.1.1",
|
|
"sqlite3": "^5.0.8"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.12",
|
|
"@types/express": "^4.17.13",
|
|
"@types/node": "^18.0.0",
|
|
"@types/sqlite3": "^3.1.8",
|
|
"nodemon": "^2.0.18",
|
|
"pino-colada": "^2.2.2",
|
|
"prisma": "^4.0.0",
|
|
"supertest": "^6.2.3",
|
|
"ts-node": "^10.8.1",
|
|
"typescript": "^4.7.4"
|
|
}
|
|
}
|