-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
32 lines (32 loc) · 892 Bytes
/
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
{
"name": "programming-quotes-api",
"version": "2.0.0",
"description": "Programming Quotes API for open source projects.",
"repository": "https://github.com/mudroljub/programming-quotes-api",
"main": "src/app.js",
"scripts": {
"save": "wget https://programming-quotes-api.herokuapp.com/quotes/ -O backup/quotes.json",
"start": "node src/app.js",
"dev": "nodemon src/app.js",
"lint": "eslint . --fix"
},
"author": "Damjan Pavlica <[email protected]>",
"license": "ISC",
"type": "module",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.3",
"compression": "^1.7.5",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"jsonwebtoken": "^9.0.2",
"marked": "^15.0.1",
"mongodb": "^6.10.0",
"mongoose": "^8.8.2"
},
"devDependencies": {
"eslint": "^9.15.0",
"nodemon": "^3.1.7"
}
}