-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 2.45 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 2.45 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
{
"name": "label",
"version": "0.1.2",
"private": true,
"description": "Cour de cassation annotation tool.",
"workspaces": [
"packages/generic/*",
"packages/courDeCassation/"
],
"scripts": {
"build": "lerna run build --stream && cp -r packages/generic/client/build/ packages/generic/backend/",
"build:backend": "lerna run --ignore @label/client build --stream",
"build:client": "lerna run --ignore @label/backend --ignore @label/cour-de-cassation build --stream",
"clean": "lerna run clean",
"clean:all": "lerna run clean:all && rimraf -rf ./node_modules",
"compile": "lerna run compile",
"compile:backend": "lerna run --ignore @label/client compile",
"compile:client": "lerna run --ignore @label/backend --ignore @label/cour-de-cassation compile ",
"coverage": "lerna run test:coverage",
"fix": "lerna run fix",
"init:db": "scripts/initializeTestDb.sh",
"lint": "lerna run lint",
"start:docker": "docker compose up -d",
"start:backend": "lerna run --scope @label/cour-de-cassation start --stream",
"start:backend:dev": "nodemon",
"start:backend:docker": "docker compose up -d labelbk",
"start:client:dev": "yarn compile:client && cd packages/generic/client && yarn start",
"start:client:docker": "docker compose up -d labelct",
"test": "lerna run test",
"type": "lerna run type",
"import:docker": "docker compose run --rm labelbk sh -c 'cd packages/courDeCassation && node dist/scripts/autoImportDocumentsFromSder.js -s settings/settings.json'",
"annotateWithNlp:docker": "docker compose run --rm labelbk sh -c 'cd packages/courDeCassation && node dist/scripts/annotateDocumentsWithoutAnnotationsWithNlp.js -s settings/settings.json'",
"exportTreatedDocuments:docker": "docker compose run --rm labelbk sh -c 'cd packages/courDeCassation && node dist/scripts/exportTreatedDocumentsSince.js -s settings/settings.json --days 0'",
"exportToBePublished:docker": "docker compose run --rm labelbk sh -c 'cd packages/courDeCassation && node dist/scripts/exportTreatedPublishableDocuments.js -s settings/settings.json'"
},
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "^4.4.1",
"**/@typescript-eslint/parser": "^4.4.1"
},
"dependencies": {
"@lerna/filter-options": "^3.20.0",
"lerna": "~3.22.0"
},
"devDependencies": {
"@lerna/filter-options": "^3.20.0",
"lerna": "~3.22.0",
"nodemon": "3.1.0",
"rimraf": "~3.0.2",
"typescript": "~4.0.0"
}
}