-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1021 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1021 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
36
{
"name": "front-pdf",
"version": "0.0.4",
"description": "Application for creating PDF from frontend assets",
"main": "src/index.js",
"author": "Alex Chernenko <ca@nullgr.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/nullgr/front-pdf"
},
"keywords": [
"pdf"
],
"dependencies": {
"@godaddy/terminus": "^4.2.0",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-slow-down": "^1.3.1",
"generic-pool": "^3.7.1",
"puppeteer": "^1.20.0",
"shortid": "^2.2.15"
},
"devDependencies": {
"cross-env": "^6.0.0",
"prettier": "^1.18.2",
"rimraf": "^3.0.0"
},
"scripts": {
"test-request:charts": "tests/templates/charts/test.sh",
"test-request:css-media-print": "tests/templates/css-media-print/test.sh",
"test-service": "cross-env NODE_ENV=production node tests/runner.js",
"test-service:dev": "cross-env NODE_ENV=development node tests/runner.js",
"start": " && node index.js"
}
}