-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 738 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 738 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
{
"name": "header-parser-api",
"version": "1.0.0",
"description": "An Express.js API that gets the user's current IP address, set language, and operating system.",
"main": "app.js",
"scripts": {
"dev": "nodemon app",
"start": "node app"
},
"repository": {
"type": "git",
"url": "git+https://github.com/autumnchris/header-parser-api.git"
},
"author": "autumnchris",
"license": "ISC",
"bugs": {
"url": "https://github.com/autumnchris/header-parser-api/issues"
},
"homepage": "https://autumnchris-header-parser-api.onrender.com/api",
"dependencies": {
"ejs": "^3.0.1",
"express": "^4.16.2",
"express-ejs-layouts": "^2.5.1"
},
"devDependencies": {
"nodemon": "^2.0.7"
}
}