-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.87 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
{
"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",
"docker:build:backend": "docker compose -f docker-compose-dev.yml build",
"docker:start:backend": "docker compose -f docker-compose-dev.yml up",
"docker:start:db": "docker compose -f docker-compose-dev.yml up -d labelDb",
"docker:stop:db": "docker compose -f docker-compose-dev.yml down labelDb",
"fix": "lerna run fix",
"init:db": "scripts/initializeTestDb.sh",
"lint": "lerna run lint",
"start:backend": "lerna run --scope @label/cour-de-cassation start --stream",
"start:backend:dev": "nodemon",
"start:client:dev": "yarn compile:client && cd packages/generic/client && yarn start",
"test": "lerna run test",
"type": "lerna run type"
},
"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"
}
}