-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 975 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 975 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
35
{
"name": "printer-backend",
"version": "1.0.0",
"main": "build/server.js",
"author": "Christos Panagiotakopoulos",
"license": "MIT",
"private": true,
"scripts": {
"start": "node ./build/server.js",
"dev": "nodemon",
"clean": "rm -r build && rm .buildinfo",
"build": "npx tsc"
},
"devDependencies": {
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"typescript": "^4.4.2",
"@types/koa": "^2.13.4",
"@types/koa-json": "^2.0.20",
"@types/koa-logger": "^3.1.1",
"@types/koa-router": "^7.4.4",
"@types/koa__cors": "^3.0.3"
},
"dependencies": {
"@koa/cors": "^3.1.0",
"@thiagoelg/node-printer": "^0.5.5",
"dotenv": "^10.0.0",
"koa": "^2.13.1",
"koa-body": "^4.2.0",
"koa-bodyparser": "^4.3.0",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.1",
"koa-router": "^10.1.1"
}
}