-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.56 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
{
"name": "@overture-stack/lectern",
"private": true,
"version": "2.0.0-next.0",
"description": "Schema Manager and Validation for Data Dictionaries",
"scripts": {
"build:all": "pnpm nx run-many --all --target=build",
"build:dictionary": "pnpm nx build @overture-stack/lectern-dictionary",
"build:validation": "pnpm nx build @overture-stack/lectern-validation",
"build:server": "pnpm nx build @overture-stack/lectern-server",
"build:client": "pnpm nx build @overture-stack/lectern-client",
"test:all": "pnpm nx run-many --all --target=test,test:integration",
"test:unit:all": "pnpm nx run-many --all --target=test",
"test:unit:dictionary": "pnpm nx test @overture-stack/lectern-dictionary",
"test:unit:validation": "pnpm nx test @overture-stack/lectern-validation",
"test:unit:server": "pnpm nx test @overture-stack/lectern-server",
"test:unit:client": "pnpm nx test @overture-stack/lectern-client",
"test:integration:server": "pnpm nx test:integration @overture-stack/lectern-server",
"generate": "pnpm build:dictionary && pnpm -C scripts generate"
},
"keywords": [],
"author": "Ontario Institute for Cancer Research",
"license": "AGPL-3.0",
"devDependencies": {
"@types/chai": "^4.3.16",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "^10.0.7",
"@types/node": "^20.14.13",
"@types/sinon": "^10.0.20",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"chai-http": "^4.4.0",
"mocha": "^10.7.0",
"nx": "^16.10.0",
"nyc": "^15.1.0",
"prettier": "^3.3.3",
"sinon": "^15.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}