-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 819 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 819 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": "timetrackingapp-project",
"version": "1.0.0",
"description": "This is a Node.js web app for tracking and managing user's time. Each user will have access to their own records through an individual online account.",
"main": "server.js",
"scripts": {
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/githubGaboDotCom/TimeTrackingApp-Project.git"
},
"author": "githubGaboDotCom",
"license": "ISC",
"bugs": {
"url": "https://github.com/githubGaboDotCom/TimeTrackingApp-Project/issues"
},
"homepage": "https://github.com/githubGaboDotCom/TimeTrackingApp-Project#readme",
"dependencies": {
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"express": "^4.18.1",
"pg": "^8.7.3"
},
"engines": {
"node": "18.7.0"
}
}