-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 956 Bytes
/
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
{
"name": "fa_nodejs_azure_devops_api",
"version": "1.0.0",
"description": "Azure DevOps Rest APIs wrapper build on ExpressJs",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"dev": "nodemon src/index.ts",
"dev:debug": "nodemon --inspect src/index.ts",
"serve": "node dist/index.js",
"start": "node dist/index.js",
"prepare": "husky install"
},
"keywords": [],
"author": {
"name": "Ayush P Gupta",
"email": "[email protected]"
},
"license": "ISC",
"dependencies": {
"axios": "1.4.0",
"azure-devops-node-api": "^12.0.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"helmet": "^7.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node": "^20.2.4",
"husky": "^8.0.3",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}