-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 729 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 729 Bytes
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
{
"name": "nodejs-users-api",
"version": "1.0.0",
"description": "A RESTful API for managing users built with Express.js",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "nodemon --env-file=.env ./src/app.js",
"migrate": "knex migrate:latest",
"migrate:rollback": "knex migrate:rollback",
"seed": "knex seed:run",
"db:reset": "knex migrate:rollback && knex migrate:latest && knex seed:run"
},
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"knex": "^3.1.0",
"nodemon": "^3.1.10",
"pg": "^8.16.3",
"uuid": "^11.1.0"
}
}