-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 887 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 887 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
27
28
29
{
"name": "node-express-api-2023",
"version": "1.0.0",
"description": "CRUD API",
"main": "./app/server.js",
"scripts": {
"start": "node ./app/server.js --watch",
"migrate:up": "npx sequelize-cli db:migrate",
"migrate:undo": "npx sequelize-cli db:migrate:undo",
"seed:all": "npx sequelize-cli db:seed:all",
"seed:undo:all": "npx sequelize-cli db:seed:undo:all",
"seed-in-order": "node ./app/db/seeders/helpers/seedInOrder.js"
},
"repository": "https://github.com/Coding-Gymnasium/node-express-api-2023",
"author": "Nico Rithner",
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"morgan": "^1.10.0",
"pg": "^8.10.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.30.0",
"sequelize-cli": "^6.6.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.2"
}
}