-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.74 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
{
"name": "@overture-stack/lectern-server",
"private": true,
"version": "2.0.0-beta.1",
"description": "Overture Data Dictionary Management",
"scripts": {
"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",
"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/body-parser": "^1.19.5",
"@types/errorhandler": "0.0.32",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^8.5.9",
"@types/lodash": "^4.17.7",
"@types/memoizee": "^0.4.11",
"@types/ms": "^0.7.34",
"@types/superagent": "^4.1.24",
"@types/swagger-ui-express": "^3.0.1",
"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.17.1",
"axios": "^1.7.2",
"body-parser": "^1.20.2",
"dotenv": "^16.4.5",
"errorhandler": "^1.5.1",
"express": "^4.19.2",
"immer": "^10.1.1",
"jsonwebtoken": "^8.5.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": "^4.6.3",
"winston": "^3.13.1",
"zod": "^3.23.8"
}
}