-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 965 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
{
"name": "Portalum.PdfGenerator",
"version": "1.0.0",
"main": "build/src/server.js",
"scripts": {
"dev": "concurrently \"nodemon\" \"nodemon -x tsoa spec-and-routes\"",
"build": "tsoa spec-and-routes && tsc",
"start": "node build/src/server.js",
"spec": "tsoa spec-and-routes",
"run-ts": "tsoa spec-and-routes && ts-node src/server.ts"
},
"license": "MIT",
"dependencies": {
"@types/memorystream": "^0.3.0",
"@types/pdfmake": "^0.1.19",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"get-stream": "^6.0.1",
"memorystream": "^0.3.1",
"pdfmake": "^0.2.4",
"swagger-ui-express": "^4.1.6",
"tsoa": "^3.14.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.13",
"@types/node": "^16.11.7",
"@types/swagger-ui-express": "^4.1.3",
"concurrently": "^6.4.0",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
}
}