-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 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
{
"name": "localhub_back-end",
"version": "1.0.0",
"description": "",
"main": "src/server.js",
"scripts": {
"dev": "nodemon src/server.js",
"start": "node src/server.js",
"test": "jest --runInBand",
"db:schema": "node src/database/run-sql.js schema",
"db:migrate": "node src/database/run-sql.js migrate",
"db:seed": "node src/database/run-sql.js seed",
"db:init": "node src/database/run-sql.js all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JSangaleti/LocalHub_Back-end.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/JSangaleti/LocalHub_Back-end/issues"
},
"homepage": "https://github.com/JSangaleti/LocalHub_Back-end#readme",
"dependencies": {
"bcryptjs": "^3.0.3",
"cors": "^2.8.6",
"dotenv": "^17.4.1",
"express": "^5.2.1",
"multer": "^1.4.5-lts.1",
"pg": "^8.20.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"jest": "^30.4.2",
"nodemon": "^3.1.14",
"supertest": "^7.2.2"
}
}