-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 948 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
38
39
40
41
{
"name": "rest-printer",
"version": "1.0.0",
"description": "Rest Printer API",
"main": "dist/app.js",
"scripts": {
"start": "node dist/app.js",
"dev": "nodemon dist/app.js",
"build": "tsc",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/heseya/rest-printer.git"
},
"keywords": [
"PDF",
"Printer",
"HTML"
],
"author": "Bartosz Juraszewski",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/heseya/rest-printer/issues"
},
"homepage": "https://gitlab.com/heseya/rest-printer#readme",
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"promise-mysql": "^4.1.1",
"puppeteer": "^2.0.0"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/puppeteer": "^2.0.0",
"nodemon": "^2.0.2",
"typescript": "^3.7.4"
}
}