-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.25 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
49
50
51
52
53
{
"name": "@resideo/zeus",
"repository": "git@github.com:resideo/zeus.git",
"private": true,
"workspaces": {
"packages": [
"auth0-add-origin",
"auth0-remove-origin",
"twistlock",
"start-and-check",
"web-create-release-pr",
"core/*"
]
},
"eslintConfig": {
"extends": [
"@resideo/typescript"
],
"ignorePatterns": [
"dist",
"node_modules/"
]
},
"scripts": {
"build": "run-s build:core build:actions",
"build:core": "lerna run --scope=@resideo/action-core-* build",
"build:actions": "lerna run --ignore=@resideo/action-core-* build",
"problems": "lerna run problems",
"lint": "eslint \"**/*.{js,ts}*\""
},
"devDependencies": {
"@effection/jest": "^2.0.2",
"@resideo/eslint-config-typescript": "^0.0.6",
"@resideo/tsconfig": "^0.0.5",
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"eslint": "^6.7.2",
"jest": "^28.1.3",
"lerna": "^3.20.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.1",
"ts-jest": "^28.0.7",
"typescript": "^4.4.3"
},
"resolutions": {
"minimist": ">=1.2.2"
},
"volta": {
"node": "14.19.1",
"yarn": "1.22.17"
}
}