-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "programming-quotes-api",
"version": "2.0.0",
"description": "Programming Quotes API for open source projects.",
"repository": "https://github.com/skolakoda/programming-quotes-api",
"main": "index.js",
"scripts": {
"save": "wget https://programming-quotes-api.herokuapp.com/quotes/ -O backup/quotes.json",
"start": "node index.js",
"dev": "nodemon index.js",
"lint": "eslint . --fix"
},
"author": "Damjan Pavlica <mudroljub@gmail.com>",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.2",
"compression": "^1.7.4",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.2",
"jsonwebtoken": "^8.2.0",
"marked": "^0.7.0",
"mongodb": "^3.3.4",
"mongoose": "^5.7.5",
"mongoose-unique-array": "^0.3.1",
"passport": "^0.4.0",
"passport-github2": "^0.1.11",
"passport-google-oauth20": "^1.0.0",
"twit": "^2.2.11",
"ws": "^3.3.3"
},
"engines": {
"node": "12.4.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"nodemon": "^1.18.5"
}
}