-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 812 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 812 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
{
"name": "dotenv-example",
"version": "0.0.0",
"description": "An example project that shows how to use dotenv with Node & Express.",
"private": true,
"keywords": [
"dotenv",
".env",
"example"
],
"author": "Usman Bashir <me@usmanbashir.com> (https://www.usmanbashir.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/BitSeekIO/dotenv-example.git"
},
"scripts": {
"start": "node ./bin/www"
},
"bugs": {
"url": "https://github.com/BitSeekIO/dotenv-example/issues"
},
"homepage": "https://github.com/BitSeekIO/dotenv-example#readme",
"dependencies": {
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^14.3.2",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"morgan": "~1.9.1"
}
}