-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (43 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (43 loc) · 1.09 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
{
"name": "devhub-backend",
"version": "1.0.0",
"description": "DevHub - Backend API for connecting developers and clients",
"type": "module",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"db:create": "psql -U postgres -c 'CREATE DATABASE devhub;'",
"db:setup": "psql -U postgres -d devhub -f schema.sql",
"db:reset": "psql -U postgres -c 'DROP DATABASE IF EXISTS devhub;' && npm run db:create && npm run db:setup",
"db:migrate": "node migrate.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"devhub",
"freelance",
"developers",
"api",
"nodejs",
"postgresql",
"express",
"jwt"
],
"author": "DevHub Team",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"pg": "^8.16.3"
},
"devDependencies": {
"nodemon": "^3.0.1"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
}
}