-
Notifications
You must be signed in to change notification settings - Fork 166
/
Copy pathpackage.json
108 lines (108 loc) · 5 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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "fern",
"description": "Fern API",
"repository": "https://github.com/fern-api/fern",
"author": "Birch Solutions, Inc.",
"private": true,
"workspaces": [
"packages/**",
"!packages/**/lib",
"!packages/**/dist",
"!packages/**/generated",
"generators/**",
"!generators/**/lib",
"!generators/**/dist"
],
"scripts": {
"clean": "yarn workspaces foreach --verbose --parallel --topological-dev run clean",
"compile": "yarn workspaces foreach --verbose --parallel --topological-dev run compile",
"test": "yarn compile && jest --passWithNoTests",
"test:ete": "yarn workspace @fern-api/cli dist:cli:dev && yarn workspace @fern-api/seed-cli dist:cli && yarn workspace @fern-api/ete-tests test",
"lint:eslint": "eslint --max-warnings 0 . --report-unused-disable-directives --ignore-path .eslintignore",
"lint:eslint:fix": "yarn lint:eslint --fix",
"lint:monorepo": "mrlint lint",
"lint:monorepo:fix": "yarn lint:monorepo --fix",
"lint:style": "stylelint 'packages/**/src/**/*.scss' --allow-empty-input --max-warnings 0",
"lint:style:fix": "yarn lint:style --fix",
"format": "prettier --write --ignore-unknown --ignore-path ./shared/.prettierignore",
"format:fix": "yarn format --ignore-path ./shared/.prettierignore \"**\"",
"format:check": "prettier --check --ignore-unknown --ignore-path ./shared/.prettierignore \"**\"",
"depcheck": "yarn workspaces foreach --verbose --parallel run depcheck",
"codegen:local": "yarn fern:local generate",
"fern:local": "yarn workspace @fern-api/cli dist:cli:prod && FERN_NO_VERSION_REDIRECTION=true node $(yarn workspace @fern-api/cli bin fern:prod)",
"fern-dev:local": "yarn workspace @fern-api/cli dist:cli:dev && FERN_NO_VERSION_REDIRECTION=true node $(yarn workspace @fern-api/cli bin fern:dev)",
"fern:build": "POSTHOG_API_KEY=\"\" yarn workspace @fern-api/cli dist:cli:prod && echo $(yarn workspace @fern-api/cli bin fern:prod)",
"fern-dev:build": "yarn workspace @fern-api/cli dist:cli:dev && echo $(yarn workspace @fern-api/cli bin fern:dev)",
"seed:build": "yarn workspace @fern-api/seed-cli dist:cli && echo $(yarn workspace @fern-api/seed-cli bin seed)",
"publish": "yarn workspaces foreach --no-private --parallel --verbose npm publish --access public",
"add-workspace": "yarn mrlint add-workspace",
"fern-script": "yarn workspace @fern-api/scripts dist:cli && node $(yarn workspace @fern-api/scripts bin fern-scripts)",
"generate-json-schema": "yarn fern-script write-json-schema fern.schema.json",
"generate-json-schema:dev": "yarn fern-script write-json-schema fern.schema.dev.json",
"check-cli-release-blockers": "yarn fern-script check-cli-release-blockers",
"check-docs-release-blockers": "yarn fern-script check-docs-release-blockers",
"root-package:check": "yarn fern-script check-root-package",
"root-package:fix": "yarn root-package:check --fix",
"demo-setup": "yarn workspace @fern-api/demo-setup dist:cli && node $(yarn workspace @fern-api/demo-setup bin demo-setup)",
"seed:local": "yarn workspace @fern-api/seed-cli dist:cli && node $(yarn workspace @fern-api/seed-cli bin seed)",
"ir:generate": "yarn workspace @fern-api/ir-sdk generate",
"openapi-ir:generate": "yarn workspace @fern-api/openapi-ir-sdk generate",
"seed-config:generate": "yarn workspace @fern-api/seed-cli generate",
"docs-config:generate": "yarn workspace @fern-api/docs-config-sdk generate"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.9",
"@babel/preset-typescript": "^7.23.0",
"@blueprintjs/eslint-plugin": "^2.1.2",
"@blueprintjs/stylelint-plugin": "^4.1.3",
"@types/is-ci": "^3.0.2",
"@types/jest": "^29.0.3",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^6.21.0",
"chalk": "^5.0.1",
"depcheck": "^1.4.6",
"eslint": "^8.56.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"execa": "^5.1.1",
"husky": "^8.0.1",
"immer": "^9.0.15",
"is-ci": "^3.0.1",
"jest": "^29.7.0",
"jsonc-parser": "~2.2.1",
"lint-staged": "^13.0.3",
"lodash-es": "^4.17.21",
"mrlint": "^0.0.131",
"organize-imports-cli": "^0.10.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"stylelint": "^14.11.0",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-standard-scss": "^5.0.0",
"tailwindcss": "^3.3.2",
"ts-node": "^10.9.2",
"typescript": "4.6.4"
},
"resolutions": {
"@babel/traverse": "7.23.2",
"json5": "2.2.2",
"yaml": "2.3.3"
},
"packageManager": "[email protected]",
"dependenciesMeta": {
"[email protected]": {
"unplugged": true
}
},
"dependencies": {
"terminal-link": "^3.0.0",
"workspace": "^0.0.1-preview.1"
}
}