-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
37 lines (37 loc) · 1.1 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
{
"private": true,
"workspaces": [
"services/*",
"frontend",
"cicd"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build:frontend": "lerna run build --scope frontend",
"lint": "lerna run lint --parallel",
"test": "lerna run test --parallel",
"test:ci": "lerna run --concurrency 1 test:ci",
"coverage": "lerna run --concurrency 1 coverage",
"prettier": "lerna run prettier --parallel",
"prettier:ci": "lerna run prettier:ci --parallel",
"deployAndRunE2eTests": "node cicd/scripts/deploy.js deploy",
"test:e2e": "lerna run --concurrency 1 test:e2e",
"remove:all:dev": "node cicd/scripts/deploy.js remove --stage dev",
"remove:all:staging": "node cicd/scripts/deploy.js remove --stage staging",
"remove:all:prod": "node cicd/scripts/deploy.js remove --stage prod",
"print:name": "lerna run print:name"
},
"devDependencies": {
"jest-junit": "^14.0.0",
"lerna": "3.15.0",
"prettier": "^2.0.5"
},
"author": "Erez Rokah",
"license": "MIT",
"name": "serverless-monitoring-app",
"resolutions": {
"jest": "26.6.0"
}
}