-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
87 lines (87 loc) · 2.99 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
{
"name": "@swan-io/lake-monorepo",
"description": "Swan's component kit",
"version": "11.3.3",
"packageManager": "[email protected]",
"engines": {
"node": ">=20.9.0",
"pnpm": "^9.13.0"
},
"private": true,
"repository": {
"type": "git",
"url": "[email protected]: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",
"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": {
"peerDependencyRules": {
"ignoreMissing": [
"react-native"
]
}
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@fluentui/svg-icons": "^1.1.272",
"@localazy/cli": "^1.7.15",
"@storybook/addon-essentials": "^8.5.0",
"@storybook/react": "^8.5.0",
"@storybook/react-vite": "^8.5.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.2.0",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.5.8",
"@vitejs/plugin-react-swc": "^3.7.2",
"dotenv": "^16.4.7",
"fast-glob": "^3.3.3",
"globals": "^15.14.0",
"graphql": "^16.10.0",
"lint-staged": "^15.4.1",
"openai": "^4.79.1",
"ora": "^8.1.1",
"pathe": "^2.0.2",
"picocolors": "^1.1.1",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"prompts": "^2.4.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"semver": "^7.6.3",
"storybook": "^8.5.0",
"tiktoken-node": "^0.0.7",
"ts-pattern": "^5.6.0",
"tsx": "^4.19.2",
"type-fest": "^4.32.0",
"typescript": "^5.7.3",
"valienv": "^0.7.0",
"vite": "^5.4.12",
"vitest": "^2.1.8"
}
}