-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 731 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 731 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
{
"name": "physical-task-manager",
"version": "1.0.0",
"description": "- Tasks will be printed on a thermal printer with voice alerts and reminders, recreating the feeling of a physical to-do list.\r - Inspired by the show **The Bear**",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon src/index.ts",
"build": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.5.0",
"express": "^4.19.2",
"mongodb": "^6.8.0",
"mongoose": "^8.5.4",
"typescript": "^5.5.4",
"winston": "^3.14.2"
},
"devDependencies": {
"nodemon": "^3.1.4",
"ts-node": "^10.9.2"
}
}