-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.86 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
{
"name": "@researchdatabox/sails-hook-redbox-pdfgen",
"version": "1.3.1",
"description": "Adds PDF generation functionality for records to ReDBox",
"main": "index.js",
"sails": {
"isHook": true,
"hookName": "template"
},
"scripts": {
"compile:tsc": "./node_modules/typescript/bin/tsc",
"dev:host": "./support/prepare-host.sh",
"dev:host:clean": "sudo rm -rf ./support/.tmp && docker volume prune -af",
"dev:docker": "COMPOSE_HTTP_TIMEOUT=120 docker compose -f ./support/docker-compose.yml up --remove-orphans",
"dev:docker:clean": "docker compose -f ./support/docker-compose.yml down",
"test:mocha:docker": "docker compose -f ./support/docker-compose.mocha.yml up --abort-on-container-exit --exit-code-from mocha",
"test:mocha:docker:clean": "docker compose -f ./support/docker-compose.mocha.yml down",
"test:bruno:docker": "docker compose -f ./support/docker-compose.bruno.yml up --abort-on-container-exit --exit-code-from bruno",
"test:bruno:docker:clean": "docker compose -f ./support/docker-compose.bruno.yml down",
"test:docker:clean": "npm run test:mocha:docker:clean; npm run test:bruno:docker:clean"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/redbox-mint/sails-hook-redbox-pdfgen.git"
},
"keywords": [
"sails",
"hook",
"redbox"
],
"author": "Andrew Brazzatti",
"license": "GPL-3.0",
"devDependencies": {
"@types/node": "^20.14.13",
"mocha": "^10.7.0",
"chai": "^5.1.1",
"sails": "^1.5.10",
"stream": "^0.0.3",
"supertest": "^6.3.4"
},
"dependencies": {
"@researchdatabox/redbox-core-types": "^1.4.4",
"fs": "^0.0.1-security",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"puppeteer": "^22.15.0",
"rxjs": "6.6.2",
"rxjs-compat": "6.6.7",
"typescript": "^5.4.5"
},
"publishConfig": {
"access": "public"
}
}