-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 761 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 761 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
{
"name": "timestamp-microservice-api",
"version": "1.0.0",
"description": "An API service that handles a dates, and return the correct unix timestamp, UTC string or simply returns the current unix timestamp and UTC timestamp.",
"main": "app.js",
"scripts": {
"start":"nodemon app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ishandeveloper/Timestamp-Microservice-API.git"
},
"author": "ishandeveloper",
"license": "ISC",
"bugs": {
"url": "https://github.com/ishandeveloper/Timestamp-Microservice-API/issues"
},
"homepage": "https://github.com/ishandeveloper/Timestamp-Microservice-API#readme",
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"nodemon": "^2.0.4"
}
}