-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.01 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
{
"name": "mindees-ui-monorepo",
"version": "0.0.0",
"private": true,
"description": "MindeesUI — universal React Native CLI + Expo component library with a deterministic Layout Intelligence Layer.",
"license": "MIT",
"homepage": "https://mindees.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/mindees/mindees-ui.git"
},
"packageManager": "pnpm@11.3.0",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=11.0.0"
},
"scripts": {
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"lint": "turbo run lint",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"test:perf": "turbo run test:perf",
"clean": "turbo run clean && rm -rf node_modules .turbo",
"verify:versions": "node scripts/verify-versions.mjs",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,mdx,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md,mdx,yml,yaml}\"",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build --filter=./packages/* && changeset publish",
"example": "pnpm --filter @mindees/example",
"docs": "pnpm --filter @mindees/docs",
"storybook": "pnpm --filter @mindees/example storybook",
"prepare": "husky"
},
"devDependencies": {
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.27.10",
"@eslint/js": "^9.39.4",
"@types/node": "^22.10.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-native": "^5.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.2",
"turbo": "^2.9.14",
"typescript": "^5.6.3",
"typescript-eslint": "^8.60.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,mdx,yml,yaml}": [
"prettier --write"
]
}
}