This repository has been archived by the owner on Sep 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 2.24 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
{
"packageManager": "[email protected]",
"private": true,
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/js-yaml": "^4.0.5",
"@types/node": "^14.18.43",
"@types/semver": "^7.5.0",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"debug": "^4.3.3",
"eslint": "^8.39.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"js-yaml": "^4.1.0",
"prettier": "^2.5.1",
"semver": "^7.5.1",
"ts-node": "^10.7.0",
"typescript": "^4.9.5"
},
"scripts": {
"audit": "yarn npm audit --all --recursive",
"build": "yarn build:plugins && yarn typecheck:scripts && yarn build:tests",
"build:plugins": "yarn build:js-api && yarn build:plugins-common && yarn build:cypress-plugin && yarn build:jest-plugin",
"build:js-api": "yarn workspace @unflakable/js-api build",
"build:cypress-plugin": "yarn workspace @unflakable/cypress-plugin build",
"build:jest-plugin": "yarn workspace @unflakable/jest-plugin build",
"build:plugins-common": "yarn workspace @unflakable/plugins-common build",
"typecheck:scripts": "tsc --noEmit --types node -p scripts",
"build:test-common": "yarn workspace unflakable-test-common build",
"build:tests": "yarn build:test-common && yarn build:cypress-tests && yarn typecheck:jest-tests",
"build:cypress-tests": "yarn workspace cypress-integration typecheck && yarn workspace cypress-integration-input typecheck && yarn workspace cypress-integration-input-esm typecheck",
"typecheck:jest-tests": "yarn workspace jest-integration typecheck && yarn workspace jest-integration-input typecheck",
"lint": "eslint .",
"prettier": "prettier --write .",
"prettier:check": "prettier --check .",
"publish": "yarn workspace @unflakable/js-api npm publish --access public && yarn workspace @unflakable/jest-plugin npm publish --access public",
"set-jest-version": "ts-node scripts/set-jest-version.ts"
},
"workspaces": [
"packages/*",
"packages/*/test/integration",
"packages/*/test/integration-input",
"packages/*/test/integration-input-esm",
"packages/*/test/integration-input-manual"
]
}