-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.72 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
52
53
54
55
{
"private": true,
"scripts": {
"build": "lerna run build --parallel",
"dev:prod": "docker-compose -f docker-compose.build.yaml up --build -d",
"dev:prod:stop": "docker-compose -f docker-compose.build.yaml down",
"dev:restore-dump": "scripts/dev/restore-dump",
"dev:docker-compose-restore-dump": "scripts/dev/docker-compose-restore-dump",
"dev:release-note": "scripts/ci/get-release-note",
"dev:testdb-create": "scripts/dev/testdb-create",
"dev:testdb-refresh": "scripts/dev/testdb-refresh",
"dev:app": "yarn workspace @emjpm/app start",
"dev:up": "docker-compose up --build",
"dev": "concurrently --prefix none npm:dev:up npm:dev:app",
"e2e": "yarn --cwd optional/e2e/.runners/puppetteer",
"lint": "lerna run lint --parallel",
"lint:pre-commit": "lerna run lint:pre-commit --parallel",
"start": "yarn dev",
"test": "lerna run test --parallel",
"postinstall": "scripts/ci/postinstall",
"release": "scripts/ci/release",
"prod": "scripts/ci/prod",
"delivery": "scripts/ci/delivery",
"ci:logs": "scripts/ci/k8sci-logs",
"ci:trigger": "scripts/ci/trigger",
"ci:stop": "scripts/ci/k8sci-stop",
"ci:sync": "scripts/ci/sync-branch"
},
"license": "Apache-2.0",
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"husky": "^7.0.2",
"lerna": "^3.22.1"
},
"dependencies": {
"concurrently": "^6.2.1",
"glob": "^7.1.7"
},
"lint-staged": {
"*.{js,jsx}": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint:pre-commit",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=15"
}
}