forked from zhravan/github-readme-quotes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 704 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 704 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
{
"name": "github-readme-quotes",
"version": "1.0.0",
"description": "Dynamically generated quotes for your github readme",
"main": "server.js",
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1"
},
"scripts": {
"test": "",
"start": "nodemon -r dotenv/config server.js",
"prod": "NODE_ENV=PRODUCTION node -r dotenv/config server.js",
"dev": "NODE_ENV=DEVELOPMENT nodemon -r dotenv/config server.js"
},
"repository": {
"type": "git",
"url": "git@github.com-HomeAccount:shravan20/github-readme-quotes.git"
},
"author": "Nishant | Shravan",
"license": "MIT"
}