-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.93 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
65
66
67
{
"name": "@overture-stack/lectern-server",
"private": true,
"version": "0.0.0",
"description": "Overture Data Dictionary Management",
"scripts": {
"build": "pnpm nuke:build && tsc -p tsconfig.build.json",
"debug": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec node --inspect -r ts-node/register ./src/server.ts",
"nuke:build": "npx rimraf dist",
"start": "NODE_ENV=production ts-node -T src/server.ts",
"test": "nyc mocha",
"test:integration": "nyc mocha --config .mocharc.integration.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/overture-stack/lectern.git"
},
"author": "Ontario Institute for Cancer Research",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/overture-stack/lectern/issues"
},
"homepage": "https://github.com/overture-stack/lectern#readme",
"devDependencies": {
"@types/chai": "^4.3.16",
"@types/chai-http": "^4.2.4",
"@types/cors": "^2.8.18",
"@types/errorhandler": "0.0.32",
"@types/express": "^5.0.2",
"@types/jsonwebtoken": "^8.5.9",
"@types/jszip": "^3.4.1",
"@types/json2csv": "5.0.7",
"@types/lodash": "^4.17.7",
"@types/memoizee": "^0.4.11",
"@types/mocha": "^10.0.10",
"@types/ms": "^0.7.34",
"@types/superagent": "^4.1.24",
"@types/swagger-ui-express": "^4.1.8",
"concurrently": "^5.3.0",
"husky": "^3.1.0",
"nodemon": "^2.0.22",
"prettier": "^3.3.3",
"testcontainers": "^1.3.1",
"typescript": "^5.5.4",
"zod-to-json-schema": "^3.23.2"
},
"dependencies": {
"@overture-stack/lectern-dictionary": "workspace:^",
"ajv": "^8.18.0",
"axios": "^1.7.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"errorhandler": "^1.5.1",
"express": "^5.1.0",
"immer": "^10.1.1",
"jsonwebtoken": "^8.5.1",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"memoizee": "^0.4.17",
"mongoose": "^7.8.0",
"ms": "^2.1.3",
"node-vault": "^0.9.22",
"swagger-ui-express": "^5.0.1",
"winston": "^3.13.1",
"zod": "^3.23.8"
}
}