-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
103 lines (103 loc) · 3.92 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
{
"name": "fern-platform-monorepo",
"description": "Fern Platform Monorepo",
"repository": "https://github.com/fern-api/fern-platform",
"author": "Birch Solutions, Inc.",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"test": "CI=true turbo test",
"test:update": "CI=true turbo test -- -u",
"test:playwright": "pnpm exec playwright test --debug",
"clean": "turbo clean",
"codegen": "turbo codegen",
"compile": "turbo compile",
"build": "turbo build",
"depcheck": "turbo depcheck",
"lint": "pnpm lint:monorepo && pnpm lint:eslint && pnpm lint:style && pnpm format:check",
"lint:fix": "pnpm lint:monorepo:fix && pnpm root-package:fix && pnpm lint:eslint:fix && pnpm lint:style:fix && pnpm format",
"lint:eslint": "turbo lint:eslint",
"lint:eslint:fix": "turbo lint:eslint:fix",
"lint:monorepo": "echo 'mrlint is disabled until it supports pnpm workspaces'",
"lint:monorepo:fix": "echo 'mrlint is disabled until it supports pnpm workspaces'",
"lint:style": "turbo lint:style",
"lint:style:fix": "turbo lint:style:fix",
"format": "prettier --write --ignore-unknown --ignore-path ./shared/.prettierignore \"**\"",
"format:check": "prettier --check --ignore-unknown --ignore-path ./shared/.prettierignore \"**\"",
"publish": "pnpm -r --filter=!private --parallel exec -- npm publish --access public",
"add-workspace": "pnpm mrlint add-workspace",
"check-docs-release-blockers": "pnpm tsx packages/scripts/src/cli.ts -- fern-scripts check-docs-release-blockers",
"root-package:check": "pnpm tsx packages/scripts/src/cli.ts -- fern-scripts check-root-package",
"root-package:fix": "pnpm root-package:check --fix",
"docs:dev": "pnpm --filter=@fern-ui/docs-bundle run dev:fern-prod",
"docs-dev:dev": "pnpm --filter=@fern-ui/docs-bundle run dev:fern-dev",
"docs:build": "pnpm --filter=@fern-ui/docs-bundle run build:fern-prod",
"docs:start": "pnpm --filter=@fern-ui/docs-bundle run start:fern-prod",
"fdr:generate": "pnpm fern generate --api fdr --local"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.24.3",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.24.1",
"@next/eslint-plugin-next": "^14.1.0",
"@playwright/test": "^1.42.1",
"@types/is-ci": "^3.0.4",
"@types/lodash-es": "4.17.12",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "7.3.1",
"@typescript-eslint/parser": "7.3.1",
"@yarnpkg/sdks": "^3.1.0",
"chalk": "^5.3.0",
"depcheck": "^1.4.3",
"dotenv": "^16.4.5",
"eslint": "^8.56.0",
"eslint-config-next": "^14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tailwindcss": "^3.13.1",
"eslint-plugin-vitest": "^0.3.26",
"execa": "^5.1.1",
"husky": "^8.0.1",
"immer": "^9.0.15",
"is-ci": "^3.0.1",
"jsonc-parser": "~2.2.1",
"lint-staged": "^13.0.3",
"lodash-es": "^4.17.21",
"mrlint": "^0.1.1",
"organize-imports-cli": "^0.10.0",
"prettier": "^3.2.4",
"react": "^18.2.0",
"styled-jsx": "^5.1.2",
"stylelint": "^16.1.0",
"stylelint-config-recommended": "^14.0.0",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-config-tailwindcss": "^0.0.7",
"stylelint-scss": "^6.0.0",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.1",
"tsx": "^4.7.1",
"turbo": "^1.12.5",
"typescript": "5.4.3",
"typescript-plugin-css-modules": "^5.1.0",
"vitest": "^1.5.0"
},
"resolutions": {
"postcss": "8.4.31",
"@mdx-js/mdx": "3.0.1",
"@mdx-js/react": "3.0.1",
"esbuild": "0.20.2"
},
"packageManager": "[email protected]",
"dependenciesMeta": {
"[email protected]": {
"unplugged": true
}
},
"dependencies": {
"fern-api": "^0.21.0"
}
}