-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 KB
/
package.json
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
{
"name": "courses-rest-api",
"version": "1.0.0",
"description": "A demonstration REST API built with Node.js, Express.js, Sequelize, and PostgreSQL",
"homepage": "https://github.com/TAP-Projects/courses-rest-api#readme",
"repository": {
"type": "git",
"url": "https://github.com/TAP-Projects/courses-rest-api"
},
"issues": "https://github.com/TAP-Projects/courses-rest-api/issues",
"main": "app.js",
"scripts": {
"start": "nodemon --inspect ./bin/www",
"seed": "cross-env DB_ENABLE_LOGGING=true node './seed'",
"debug": "DEBUG=courses-rest-api:* npm start"
},
"keywords": [
"node",
"express",
"api",
"rest"
],
"author": "Julian Johannesen",
"license": "ISC",
"devDependencies": {
"nodemon": "^2.0.2",
"debug": "^4.1.1"
},
"dependencies": {
"basic-auth": "^2.0.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"core-js": "^3.6.4",
"cross-env": "^7.0.2",
"express": "^4.16.3",
"express-validator": "^6.4.0",
"morgan": "^1.9.0",
"promise.prototype.finally": "^3.1.0",
"sequelize": "^5.21.5",
"sequelize-cli": "^5.5.1",
"sqlite3": "^4.0.2"
}
}