-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.17 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.17 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@swan-io/lake-monorepo",
"description": "Swan's component kit",
"version": "13.6.3",
"packageManager": "pnpm@10.26.1",
"type": "module",
"engines": {
"node": ">22.12.0"
},
"private": true,
"repository": {
"type": "git",
"url": "git@github.com:swan-io/lake.git"
},
"scripts": {
"start": "storybook dev --port 6006",
"typecheck": "tsc --noEmit",
"lint": "biome check",
"build-storybook": "storybook build --output-dir dist",
"test": "vitest run",
"build": "tsc -p tsconfig.build.json",
"clean-build": "tsx scripts/clean/cleanBuild.ts",
"format": "prettier '**/*' --ignore-unknown --write",
"format-locales": "prettier '**/locales/*.json' --write",
"validate-locales": "tsx scripts/locales/validateTranslations.ts packages/shared-business/src/locales",
"license-report": "tsx scripts/license-crawler/crawlLicenses.ts --check --report",
"license-check": "tsx scripts/license-crawler/crawlLicenses.ts --check",
"release": "tsx scripts/release/createPullRequest.ts",
"icons": "tsx scripts/fluent-icons/generateIcons.ts",
"ai-translate": "tsx -r dotenv/config scripts/locales/aiTranslate.ts",
"sort-locales": "tsx scripts/locales/sort.ts",
"pull-shared-business-locales": "localazy download shared-business -k localazy.keys.shared-business.json",
"pull-locales": "pnpm pull-shared-business-locales && pnpm sort-locales && pnpm format-locales",
"remove-unused-locales": "tsx scripts/locales/removeUnused.ts",
"extract-rejections": "tsx -r dotenv/config scripts/graphql/extractRejections.ts",
"extract-supporting-document-purposes": "tsx -r dotenv/config scripts/graphql/extractSupportingDocumentPurposes.ts",
"configure-hooks": "git config --local core.hooksPath .hooks"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"packages/*/src/**/*.{ts,tsx}": "biome check",
"packages/*/src/locales/*.json": "pnpm sort-locales"
},
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"@swc/core",
"esbuild"
],
"peerDependencyRules": {
"ignoreMissing": [
"react-native"
]
}
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@fluentui/svg-icons": "^1.1.318",
"@localazy/cli": "^1.7.16",
"@storybook/react": "^10.2.4",
"@storybook/react-vite": "^10.2.4",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.7.0",
"@vitejs/plugin-react-swc": "^4.2.3",
"dotenv": "^17.2.3",
"fast-glob": "^3.3.3",
"graphql": "^16.12.0",
"jsdom": "^28.0.0",
"lint-staged": "^16.2.7",
"openai": "^6.17.0",
"ora": "^9.1.0",
"pathe": "^2.0.3",
"picocolors": "^1.1.1",
"playwright": "^1.58.1",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"prompts": "^2.4.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"semver": "^7.7.3",
"storybook": "^10.2.4",
"tiktoken": "1.0.22",
"ts-pattern": "^5.9.0",
"tsx": "^4.21.0",
"type-fest": "^5.4.3",
"typescript": "^5.9.3",
"valienv": "^1.1.0",
"vite": "^7.3.1",
"vitest": "^4.0.18"
}
}