-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.88 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.88 KB
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
{
"name": "dmptool-narrative-generator",
"description": "Service that accepts a DMP as JSON and renders a narrative document",
"author": "University of California Curation Center (UC3)<dmptool@ucop.edu>",
"license": "MIT",
"version": "1.0.0",
"main": "server.js",
"repository": {
"type": "git",
"url": "https://github.com/CDLUC3/dmptool-narrative-generator.git"
},
"scripts": {
"aws_start": "node ./dist/server.js",
"build": "rm -rf ./dist && npm run compile",
"compile": "tsc",
"dev": "ts-node-dev --respawn ./src/server.ts",
"lint": "npx eslint . --ignore-pattern dist/",
"test": "jest --coverage",
"start": "npm run build && nodemon ./dist/server.js",
"prepare": "is-ci || npx husky install",
"trivy-high": "./src/scripts/trivy-high.sh",
"trivy-med": "./src/scripts/trivy-med.sh"
},
"overrides": {
"fast-xml-parser": "5.5.6",
"flatted": "3.4.2"
},
"dependencies": {
"@dmptool/types": "^3.1.3",
"@dmptool/utils": "^1.0.43",
"@elastic/ecs-pino-format": "^1.5.0",
"@turbodocx/html-to-docx": "^1.20.1",
"cookie-parser": "^1.4.7",
"csv-stringify": "^6.6.0",
"domelementtype": "^2.3.0",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"express-jwt": "^8.5.1",
"handlebars": "^4.7.8",
"htmlparser2": "^10.1.0",
"jsonwebtoken": "^9.0.3",
"mysql2": "^3.19.1",
"pino": "^10.3.1",
"pluralize": "^8.0.0",
"puppeteer": "^24.39.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^25.4.0",
"eslint": "^10.0.3",
"fast-check": "^4.6.0",
"husky": "^9.1.7",
"jest": "^30.3.0",
"jest-expect-message": "^1.1.3",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1"
}
}