-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
33 lines (33 loc) · 1.03 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "lerna run clean",
"build": "lerna run build",
"version": "lerna version --no-push",
"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": "BROWSER=firefox jest --config ./jest.config.js --coverage",
"pretest": "pnpm run selenium",
"selenium": "selenium start",
"selenium:debug": "selenium debug",
"selenium:stop": "selenium stop"
},
"devDependencies": {
"@nighttrax/eslint-config-ts": "~12.0.0-alpha.3",
"@tdd-buffet/jest-config": "~5.0.1",
"@tdd-buffet/tsconfig": "~1.0.5",
"@tdd-buffet/selenium": "~0.4.21",
"@types/jest": "~29.5.0",
"@types/node": "~18.15.0",
"eslint": "~8.38.0",
"jest": "~29.5.0",
"lerna": "~6.6.0",
"strong-mock": "~8.0.0",
"typescript": "~4.9.0"
}
}