-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (40 loc) · 1.62 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
{
"name": "leiden-plus",
"version": "1.0.1",
"type": "module",
"description": "",
"scripts": {
"build": "pnpm -r build",
"test": "TS_NODE_PROJECT=./tsconfig.test.json mocha",
"test:idp:get-data": "git submodule update --init --depth 1 test/data/idp.data",
"test:idp:xsugar:up": "docker compose -f ./test/docker-compose.yml up --wait xsugar",
"test:idp:xsugar:down": "docker compose -f ./test/docker-compose.yml down --volumes --remove-orphans",
"test:idp:prepare:edition": "pnpm test:idp:xsugar:up && tsx ./test/scripts/idp-prepare-data.ts edition",
"test:idp:prepare:translation": "pnpm test:idp:xsugar:up && tsx ./test/scripts/idp-prepare-data.ts translation",
"test:idp:prepare": "pnpm test:idp:prepare:edition && pnpm test:idp:prepare:translation",
"test:idp:edition": "TS_NODE_PROJECT=./tsconfig.test.json mocha test/idp-edition.test.ts",
"test:idp:translation": "TS_NODE_PROJECT=./tsconfig.test.json mocha test/idp-translation.test.ts",
"test:idp": "pnpm test:idp:get-data && pnpm test:idp:prepare && pnpm test:idp:edition && pnpm test:idp:translation",
"dev": "pnpm --parallel --filter \"dev-app^...\" watch & pnpm --filter dev-app start"
},
"keywords": [],
"author": "",
"license": "ISC",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@types/chai": "^5.0.1",
"@types/chai-xml": "^0.3.6",
"@types/jsdom": "^21.1.7",
"@types/mocha": "^10.0.10",
"chai": "^5.1.2",
"chai-xml": "^0.4.1",
"jsdom": "^25.0.1",
"mocha": "^11.0.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.19.2"
}
}