-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 1.15 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "pnpm run -r clean",
"build": "pnpm run -r build",
"version": "lerna version",
"version:force": "pnpm run version --force-publish",
"pub:git": "pnpm run build && lerna publish from-git && pnpm run clean",
"pub:pkg": "pnpm run build && lerna publish from-package && pnpm run clean",
"lint": "eslint --ext ts,tsx,js .",
"test": "pnpm run -r test",
"ts-node": "ts-node -O '{\"target\": \"es6\"}'",
"selenium": "pnpm exec ts-node packages/selenium/src/bin/index.ts start --port 4444 --retries 30",
"selenium:debug": "pnpm exec ts-node packages/selenium/src/bin/index.ts debug --port 3333",
"selenium:stop": "pnpm exec ts-node packages/selenium/src/bin/index.ts stop"
},
"devDependencies": {
"@commitlint/config-conventional": "~19.1.0",
"@commitlint/config-lerna-scopes": "~19.0.0",
"@commitlint/cli": "~19.2.0",
"@nighttrax/eslint-config-tsx": "~12.0.0-alpha.0",
"eslint": "~8.57.0",
"lerna": "~6.6.0",
"@types/jest": "~29.5.0",
"@types/node": "~20.12.0",
"ts-node": "~10.9.0",
"typescript": "~5.4.0"
}
}