-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 859 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 859 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
30
31
{
"name": "blogging-platform-api",
"version": "1.0.0",
"description": "The project assignment for roadmap.sh",
"main": "./app/index.js",
"scripts": {
"start": "node ./app/index.js",
"dev": "nodemon ./app/index.js",
"setup": "node ./database/db_setup.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ilia-abbasi/Blogging-Platform-API.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ilia-abbasi/Blogging-Platform-API/issues"
},
"homepage": "https://github.com/ilia-abbasi/Blogging-Platform-API#readme",
"dependencies": {
"dotenv": "^17.2.1",
"express": "^5.1.0",
"express-validator": "^7.2.1",
"lodash": "^4.17.21",
"morgan": "^1.10.1",
"pg": "^8.16.3"
}
}