-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 850 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 850 Bytes
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
{
"name": "dev-tools-js",
"private": true,
"workspaces": [
"packages/*"
],
"type": "module",
"scripts": {
"check-types": "turbo run check-types",
"empty-changeset": "changeset add --empty",
"format:check": "oxfmt --check",
"format:write": "oxfmt",
"lint": "eslint .",
"prepare-release": "changeset",
"publish-packages": "changeset publish",
"test": "turbo run test"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@qlik/eslint-config": "workspace:^",
"@qlik/oxfmt-config": "workspace:^",
"@qlik/tsconfig": "workspace:^",
"@types/node": "^25.6.0",
"eslint": "^10.2.0",
"oxfmt": "^0.45.0",
"turbo": "^2.9.6",
"typescript": "^6.0.3",
"vitest": "^4.1.4"
},
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.33.0"
}