-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.43 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
{
"name": "phd-assess-pdf",
"version": "1.7.0",
"description": "",
"main": "src/makePDF.js",
"scripts": {
"start": "genversion src/version.js && node --loader ts-node/esm -r dotenv/config ./src/index.ts",
"build": "tsc -p . && genversion build/version.js && cp -r ./src/fonts ./build",
"build-docker": "docker build --tag phd-assess-pdf .",
"generate-local-pdf": "ts-node -r dotenv/config scripts/generateLocalPDF.ts",
"test": "mocha -r ts-node/register tests/**/*.test.ts",
"postinstall": "patch-package"
},
"keywords": [],
"author": "",
"license": "ISC",
"engines": {
"node": "18"
},
"dependencies": {
"app-root-path": "^3.1.0",
"console-log-json": "^2.11.2",
"crypto-js": "^4.1.1",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"genversion": "^3.1.1",
"get-stream": "^6.0.1",
"lodash": "^4.17.21",
"patch-package": "^7.0.0",
"pdfmake": "^0.2.7",
"zeebe-node": "^8.2.5"
},
"devDependencies": {
"@tsconfig/node18": "^1.0.3",
"@types/chai": "^4.3.5",
"@types/chai-fs": "^2.0.2",
"@types/crypto-js": "^4.1.1",
"@types/debug": "^4.1.7",
"@types/lodash": "^4.14.194",
"@types/mocha": "^10.0.1",
"@types/pdfmake": "^0.2.2",
"chai": "^4.3.7",
"chai-fs": "^2.0.0",
"mocha": "10.1.0",
"pdfjs-dist": "^3.6.172",
"phd-assess-meta": "github:epfl-si/PhDAssess-meta",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}