forked from orval-labs/orval
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.64 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "orval-workspaces",
"namespace": "@orval",
"version": "6.20.0",
"license": "MIT",
"workspaces": [
"packages/*"
],
"private": true,
"scripts": {
"format": "prettier --write .",
"format:staged": "pretty-quick --staged",
"prerelease": "yarn build && cd ./tests && yarn generate && yarn build",
"release": "dotenv release-it",
"postrelease": "yarn build && yarn update-samples",
"prepare": "husky install && cd ./samples/react-query/basic && yarn",
"commitlint": "commitlint",
"update-samples": "zx ./scripts/update-samples.mjs",
"build": "turbo run build",
"test": "turbo run test",
"test:ci": "turbo run test -- --run",
"lint": "turbo run lint",
"dev": "turbo run dev"
},
"devDependencies": {
"@commitlint/cli": "^18.4.2",
"@commitlint/config-conventional": "^17.0.3",
"@faker-js/faker": "^8.3.1",
"@release-it-plugins/workspaces": "^4.0.0",
"@release-it/conventional-changelog": "^5.0.0",
"@types/node": "^20.8.10",
"@types/prettier": "^2.7.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.33.0",
"dotenv-cli": "^6.0.0",
"esbuild-plugin-alias": "^0.2.1",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-turbo": "^0.0.4",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"prettier": "2.7.1",
"pretty-quick": "^3.1.3",
"release-it": "^15.6.0",
"rimraf": "^5.0.5",
"tsup": "^6.5.0",
"turbo": "^1.10.16",
"typescript": "^4.7.4",
"vitest": "^0.6.3",
"zx": "^7.2.3"
}
}