-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
51 lines (51 loc) · 2.71 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
{
"name": "dockest-monorepo",
"version": "0.0.0",
"homepage": "https://github.com/erikengervall/dockest#readme",
"bugs": {
"url": "https://github.com/erikengervall/dockest/issues"
},
"license": "MIT",
"author": "Erik Engervall <[email protected]> (https://github.com/erikengervall)",
"repository": {
"type": "git",
"url": "https://github.com/erikengervall/dockest.git"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"clean": "lerna run clean --stream && lerna clean --yes && rm -rf ./node_modules && yarn cache clean && yarn && yarn prep",
"dev:link": "lerna run dev:dockest:link --stream && lerna run dev:examples:link --stream",
"dev:link:list": "ls -la ~/.config/yarn/link/@examples",
"dev:unlink": "lerna run dev:examples:unlink --stream && lerna run dev:dockest:unlink --stream",
"yarn:locks": "yarn --force && lerna exec \"yarn --force\" --ignore @examples/aws-codebuild--src --ignore @examples/docker-in-docker--src --ignore @examples/docker-in-docker--app",
"yarn:upgrade": "yarn upgrade --latest && lerna exec \"yarn upgrade --latest\" --ignore @examples/aws-codebuild--src --ignore @examples/docker-in-docker--src --ignore @examples/docker-in-docker--app",
"prep:root:install:deps": "yarn",
"prep:root": "yarn prep:root:install:deps",
"prep:dockest:install:deps": "lerna exec \"yarn\" --stream --scope dockest",
"prep:dockest:build": "yarn lerna run build --stream --scope dockest",
"prep:dockest": "yarn prep:dockest:install:deps && yarn prep:dockest:build",
"prep:examples:install:deps": "lerna exec \"yarn\" --stream --scope @examples/* --ignore @examples/aws-codebuild--src --ignore @examples/docker-in-docker--src --ignore @examples/docker-in-docker--app",
"prep:examples:build": "yarn lerna run build --stream --scope @examples/*",
"prep:examples": "yarn prep:examples:install:deps && yarn prep:examples:build",
"prep": "yarn prep:root && yarn prep:dockest && yarn prep:examples",
"lint": "eslint \"./packages/**/*.ts\"",
"test": "yarn test:unit && yarn test:examples",
"test:concurrent": "yarn test:unit && lerna run test:examples --stream --concurrency 10",
"test:examples": "lerna run test:examples --stream --ignore @examples/aws-codebuild --ignore @examples/docker-in-docker",
"test:unit": "lerna run test:unit --stream"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.8.1",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^5.0.0",
"lerna": "^3.20.2",
"prettier": "^3.0.3",
"prettier-eslint": "^16.1.1"
}
}