-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 846 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 846 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
32
33
34
{
"name": "taskflow-api",
"version": "1.0.0",
"description": "Task management API with team collaboration features",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"test": "vitest run",
"lint": "biome check src/"
},
"dependencies": {
"express": "^4.21.0",
"jsonwebtoken": "^9.0.2",
"bcryptjs": "^2.4.3",
"zod": "^3.23.8",
"pg": "^8.13.0",
"nodemailer": "^6.9.15",
"winston": "^3.14.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"typescript": "^5.6.0",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.7",
"@types/bcryptjs": "^2.4.6",
"@types/pg": "^8.11.10",
"@types/nodemailer": "^6.4.16",
"tsx": "^4.19.0",
"vitest": "^2.1.0"
}
}