-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 KB
/
package.json
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
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "todo",
"version": "1.0.0",
"description": "Rest APIs for todo list app",
"main": "server.js",
"type": "module",
"scripts": {
"clean": "rimraf dist",
"build:tsc": "tsc",
"build": "npm run clean && npm run build:tsc",
"start": "npm run build && node dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patil-rahuls/todo.git"
},
"author": "Rahul Patil",
"license": "ISC",
"bugs": {
"url": "https://github.com/patil-rahuls/todo/issues"
},
"homepage": "https://github.com/patil-rahuls/todo#readme",
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.3",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-async-handler": "^1.2.0",
"mongoose": "^8.8.1",
"node-cron": "^3.0.3",
"typescript": "^5.6.3",
"validator": "^13.12.0"
},
"devDependencies": {
"@types/mongodb": "^4.0.7",
"@types/bcrypt": "^5.0.2",
"@types/body-parser": "^1.19.5",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.9.0",
"@types/node-cron": "^3.0.11",
"@types/validator": "^13.12.2"
}
}