-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.27 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "notes-bookmarks-backend",
"version": "1.0.0",
"main": "src/server.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"postinstall": "npx prisma generate",
"prisma:deploy": "npx prisma migrate deploy",
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio",
"db:seed": "node prisma/seed.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "A RESTful API for managing personal notes and bookmarks, with user authentication and search capabilities.",
"dependencies": {
"@prisma/client": "^6.11.1",
"axios": "^1.10.0",
"bcryptjs": "^3.0.2",
"cheerio": "^1.1.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-validator": "^7.2.1",
"helmet": "^8.1.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"pg": "^8.16.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"url-metadata": "^2.5.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"jest": "^30.0.4",
"nodemon": "^3.1.10",
"prisma": "^6.11.1",
"supertest": "^7.1.3"
},
"engines": {
"node": ">=18.x.x"
}
}