-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 746 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 746 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
{
"name": "taskmaster-pro-enhanced",
"version": "2.0.0",
"description": "The ultimate task management app with kanban, notes, analytics, and more!",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js"
},
"keywords": [
"task",
"notes",
"kanban",
"productivity",
"pomodoro",
"analytics"
],
"author": "TaskMaster Team",
"license": "MIT",
"dependencies": {
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"sqlite3": "^5.1.6"
},
"devDependencies": {
"nodemon": "^3.1.10"
}
}