-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.08 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.08 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
50
51
52
{
"name": "postgresplayground",
"version": "1.0.0",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Swordship/MiniBook.git"
},
"keywords": [
"nodejs",
"express",
"postgresql",
"api",
"finance"
],
"author": "Monish",
"license": "MIT",
"bugs": {
"url": "https://github.com/Swordship/MiniBook/issues"
},
"homepage": "https://github.com/Swordship/MiniBook#readme",
"description": "",
"dependencies": {
"@prisma/client": "^6.17.1",
"bcryptjs": "^3.0.2",
"cors": "^2.8.5",
"dotenv": "^17.2.2",
"eslint": "^9.36.0",
"express": "^5.1.0",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.1",
"pg": "^8.16.3",
"prettier": "^3.6.2",
"zod": "^4.1.12"
},
"devDependencies": {
"jest": "^30.1.3",
"nodemon": "^3.1.10",
"prisma": "^6.17.1",
"supertest": "^7.1.4"
}
}