-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.53 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "bulk_pdf_export",
"version": "0.3.4",
"description": "A microservice that expects JSON information to put into a PDF.",
"main": "server.ts",
"scripts": {
"start": "ts-node src/app-scripts/index.ts",
"start:watch": "nodemon src/app-scripts/index.ts",
"start:debug": "node --inspect=5857 -r ts-node/register src/app-scripts/index.ts",
"start:debug:watch": "nodemon --inspect=5857 src/app-scripts/index.ts",
"start:docker": "docker run --add-host host.docker.internal:host-gateway --cap-add=SYS_ADMIN -p 3005:3005 --name=dev-bulk-pdf-export --rm -it $(docker build --build-arg REDERLY_PACKAGER_PRUNE_DEPENDENCIES=false -q .)",
"build": "npm run clean && tsc",
"clean": "if [ -d ts-built ]; then rm -r ts-built; fi;",
"lint": "eslint src/ --ext .ts",
"test": "echo \"Error: no test specified\" && exit 1",
"package": "node ./utility-scripts/package.js",
"build:package": "npm run build && npm run package"
},
"author": "Gibryon Bhojraj",
"license": "GPL-3.0",
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts"
],
"watch": [
"src"
],
"ext": "ts",
"execMap": {
"ts": "node --require ts-node/register"
},
"signal": "SIGINT"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.7.0",
"@aws-sdk/lib-storage": "^3.7.0",
"archiver": "^5.2.0",
"async-mutex": "https://github.com/rederlyhq/async-mutex/releases/download/v0.3.2-rederly.0/async-mutex-0.3.2-rederly.0.tgz",
"axios": "^0.21.1",
"boom": "^7.3.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"fs-extra": "^9.1.0",
"http-proxy-middleware": "^1.0.6",
"lodash": "^4.17.20",
"morgan": "^1.10.0",
"pdfjs-dist": "^2.6.347",
"pug": "^3.0.2",
"puppeteer-core": "^5.5.0",
"tinyqueue": "^2.0.3",
"url-join": "^4.0.1",
"winston": "^3.3.3"
},
"devDependencies": {
"@tsconfig/node12": "^1.0.7",
"@types/archiver": "^5.1.0",
"@types/boom": "^7.3.0",
"@types/express": "^4.17.11",
"@types/fs-extra": "^9.0.8",
"@types/lodash": "^4.14.167",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.22",
"@types/pug": "^2.0.4",
"@types/puppeteer": "^5.4.2",
"@types/puppeteer-core": "^5.4.0",
"@types/url-join": "^4.0.0",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"acorn": "^8.0.4",
"eslint": "^7.17.0",
"nodemon": "^2.0.7",
"serve-index": "^1.9.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}