forked from orval-labs/orval
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.25 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.25 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
{
"name": "orval-workspaces",
"namespace": "@orval",
"version": "8.2.0",
"license": "MIT",
"workspaces": [
"packages/*",
"samples/**",
"tests"
],
"private": true,
"packageManager": "yarn@4.11.0",
"devEngines": {
"runtime": {
"name": "node",
"version": ">=24",
"onFail": "error"
}
},
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"format:staged": "lint-staged",
"format:samples": "prettier --write samples",
"prepare": "husky",
"commitlint": "commitlint",
"update-samples": "turbo run generate-api && yarn format:samples",
"build": "turbo build --filter='./packages/*'",
"test": "turbo test --filter='./packages/*'",
"test:cli": "yarn workspace orval-tests clean && yarn workspace orval-tests generate && yarn workspace orval-tests build",
"test:samples": "turbo test --filter='./samples/**' --filter=!react-query-form-data --filter=!react-query-form-url-encoded --filter=!react-query-form-url-encoded-mutator --filter=!react-query-form-data-mutator --filter=!react-query-hook-mutator",
"test:ci": "CI=true yarn test && yarn test:cli && yarn test:samples",
"lint": "turbo run lint --filter='./packages/*'",
"lint:samples": "turbo run lint --filter='./samples/**'",
"dev": "turbo run dev --filter='./packages/*'",
"clean": "rimraf .turbo",
"clean:all": "yarn workspaces foreach -A run clean",
"nuke:all": "yarn workspaces foreach -A run nuke && rimraf .turbo .yarn node_modules"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/js": "catalog:",
"@types/node": "catalog:",
"esbuild-plugin-alias": "^0.2.1",
"eslint": "catalog:",
"eslint-config-prettier": "^10.1.8",
"eslint-config-turbo": "^2.7.4",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^62.0.0",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"prettier": "catalog:",
"rimraf": "catalog:",
"turbo": "^2.7.3",
"typescript": "catalog:",
"typescript-eslint": "^8.50.1",
"vitest": "catalog:"
},
"volta": {
"node": "24.13.0",
"yarn": "4.11.0"
}
}