-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.28 KB
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
45
46
47
48
49
50
{
"name": "task-manager",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "env-cmd -f ./dev.env tsx watch src/index.ts --exitcrash",
"build": "rimraf dist && tsc",
"test": "env-cmd -f ./test.env node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --watch --runInBand"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@sendgrid/mail": "^8.1.6",
"bcrypt": "^6.0.0",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.3",
"mongodb": "^6.20.0",
"mongoose": "^8.19.2",
"multer": "^2.0.2",
"sharp": "^0.34.5",
"validator": "^13.15.15"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/express": "^5.0.5",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^2.0.0",
"@types/node": "^24.10.1",
"@types/supertest": "^6.0.3",
"@types/validator": "^13.15.10",
"diff": "^8.0.3",
"env-cmd": "^11.0.0",
"jest": "^30.2.0",
"rimraf": "^6.1.2",
"should": "^13.2.3",
"supertest": "^7.2.0",
"ts-jest": "^29.4.6",
"ts-node": "^1.7.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
},
"overrides": {
"diff": "$diff"
}
}