-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.09 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.09 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
{
"name": "devlink",
"version": "1.0.0",
"description": "A developer collaboration API",
"main": "server.ts",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"build": "tsc",
"start": "node dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mgalen007/DevLink.git"
},
"keywords": [
"TS",
"Express"
],
"author": "mgalen007",
"license": "ISC",
"bugs": {
"url": "https://github.com/mgalen007/DevLink/issues"
},
"homepage": "https://github.com/mgalen007/DevLink#readme",
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.6.0",
"morgan": "^1.10.1",
"ts-node-dev": "^2.0.0",
"typescript": "^6.0.2"
},
"dependencies": {
"@types/morgan": "^1.9.10",
"bcryptjs": "^3.0.3",
"cors": "^2.8.6",
"dotenv": "^17.4.1",
"express": "^5.2.1",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.3",
"mongoose": "^9.4.1",
"zod": "^4.3.6"
}
}