-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.42 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.42 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
{
"name": "cloudbeat-js",
"private": true,
"version": "1.0.0-beta.5",
"devDependencies": {
"@types/node": "^20.19.19",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^46.6.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"husky": "^8.0.3",
"lerna": "7.4.2",
"rimraf": "^3.0.2",
"typescript": "^5.2.2"
},
"workspaces": [
"packages/*"
],
"scripts": {
"prepare1": "husky install",
"clean": "lerna run clean",
"compile": "yarn workspaces foreach -vpt run compile",
"lint": "lerna run lint",
"test": "yarn workspaces foreach -vpt run test",
"lerna:bootstrap": "lerna bootstrap",
"lerna:version": "lerna version",
"lerna:publish": "lerna publish",
"build": "npm run clean && lerna run build",
"build:client": "lerna run build --scope @cloudbeat/client",
"build:types": "lerna run build --scope @cloudbeat/types",
"build:cypress": "lerna run build --scope @cloudbeat/cypress",
"build:playwright": "lerna run build --scope @cloudbeat/playwright",
"build:cucumber": "lerna run build --scope @cloudbeat/cucumber",
"eslint": "[ \"$CI\" = true ] && eslint --quiet -f codeframe --ext ts,tsx . || eslint --ext ts,tsx .",
"tsc": "tsc -p ."
}
}