-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.53 KB
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
{
"name": "root",
"private": true,
"type": "module",
"nextVersionBump": "patch",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"clean": "yarn workspaces foreach -A run clean || rm -rf node_modules packages/*/node_modules",
"generate:vscode-workspace": "./scripts/generate_vscode_workspace.sh",
"format": "lerna run format",
"install:chromium": "node ./node_modules/puppeteer/install.js",
"lerna": "lerna",
"lint": "lerna run lint",
"postinstall": "yarn generate:vscode-workspace",
"release": "./scripts/release.sh",
"release:ask": "ASK_VERSION=true ./scripts/release.sh",
"test": "lerna run test",
"test:coverage": "lerna run test:coverage",
"version:bump": "./scripts/version_bump.sh"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@typescript-eslint/eslint-plugin": "^8.66.0",
"@typescript-eslint/parser": "^8.66.0",
"@vertexvis/build-tools": "^0.11.2",
"@vertexvis/eslint-config-vertexvis-typescript": "^0.6.2",
"@vertexvis/jest-config-vertexvis": "^0.6.2",
"@vertexvis/typescript-config-vertexvis": "^1.3.2",
"eslint": "^8.57.0",
"jest": "^29.0.0",
"lerna": "^9.0.7",
"rollup": "^4.62.4",
"rollup-plugin-typescript2": "^0.37.0",
"ts-jest": "^29.4.12",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=22.22.2"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}