-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.14 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
{
"name": "devpulse",
"version": "1.0.0",
"description": "Internal Tech Issue & Feature Tracker. A collaborative platform for software teams to report bugs, suggest features, and coordinate resolutions.",
"main": "index.js",
"scripts": {
"start": "node dist/server.js",
"dev": "tsx watch ./src/server.ts",
"build": "tsup",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nazmul1211/devpulse.git"
},
"keywords": [],
"author": "nazmul",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/Nazmul1211/devpulse/issues"
},
"homepage": "https://github.com/Nazmul1211/devpulse#readme",
"dependencies": {
"bcrypt": "^6.0.0",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"pg": "^8.21.0",
"tsup": "^8.5.1",
"tsx": "^4.22.3"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/pg": "^8.20.0",
"typescript": "^6.0.3"
}
}