-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 876 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 876 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
32
33
34
35
36
37
{
"name": "scribbblr",
"version": "1.0.0",
"description": "A command line utility for taking notes",
"main": "app.js",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon app",
"start": "cross-env NODE_ENV=production node app"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iamwebwiz/scribbblr.git"
},
"keywords": [
"scribbble",
"note",
"mongodb",
"mongoose",
"postgresql"
],
"author": "Ezekiel Oladejo <iamwebwiz@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/iamwebwiz/scribbblr/issues"
},
"homepage": "https://github.com/iamwebwiz/scribbblr#readme",
"dependencies": {
"chalk": "^2.4.2",
"commander": "^2.20.0",
"dotenv": "^8.2.0",
"mongoose": "^5.9.22"
},
"devDependencies": {
"cross-env": "^7.0.2",
"nodemon": "^2.0.4"
}
}