-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.46 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.46 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "root",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/getodk/web-forms.git"
},
"type": "module",
"version": "0.1.0",
"engines": {
"node": "^20.19.3 || ^22.12.0 || ^24.11.0",
"yarn": "4.11.0"
},
"volta": {
"node": "24.11.0",
"yarn": "4.11.0"
},
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
],
"scripts": {
"preinstall": "npx only-allow yarn",
"test": "TZ=America/Phoenix npx turbo run test",
"build": "turbo run build",
"types": "turbo run types",
"bump": "changeset add",
"format": "npm-run-all --print-name format:vue format:prettier",
"format:prettier": "prettier -w \"**/*\" --ignore-unknown --cache",
"format:vue": "eslint ./**/*.vue --report-unused-disable-directives --cache --fix",
"format:readme-only": "prettier -w README.md",
"format:checkonly": "prettier -c \"**/*\" --ignore-unknown",
"lint": "eslint . --report-unused-disable-directives --cache",
"feature-matrix": "node scripts/feature-matrix/render.js"
},
"dependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.7",
"@eslint/js": "^9.39.1",
"@playwright/test": "^1.58.2",
"@tsconfig/node20": "^20.1.8",
"@types/eslint": "^9.6.1",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint__js": "^9.14.0",
"@types/geojson": "^7946.0.16",
"@types/jsdom": "^27.0.0",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"@vitest/browser-playwright": "^4.0.18",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.6.0",
"@vue/tsconfig": "^0.8.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^61.4.1",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-prettier-vue": "^5.0.0",
"eslint-plugin-vue": "^10.6.0",
"npm-run-all2": "^8.0.4",
"only-allow": "^1.2.1",
"organize-imports-cli": "^0.10.0",
"playwright": "^1.58.2",
"prettier": "^3.6.2",
"rimraf": "^6.1.3",
"turbo": "^2.6.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.48.0",
"vitest": "^4.0.18",
"vue": "^3.5.29",
"vue-eslint-parser": "^10.0.0",
"vue-tsc": "^3.1.5"
},
"resolutions": {
"tree-sitter": "0.22.1",
"@asgerf/dts-tree-sitter/tree-sitter": "0.22.1"
}
}