-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.65 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
{
"name": "@design-blocks/root",
"version": "0.0.0",
"repository": "git@github.com:openkitrun/design-blocks.git",
"author": "Jorge Luis Calleja A. - wootsbot",
"license": "MIT",
"private": true,
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"scripts": {
"prepare": "husky install",
"postinstall": "husky install",
"build": "turbo run build",
"bundlesize": "turbo run bundlesize",
"clean": "turbo run clean",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish",
"version:dev": "changeset version --snapshot dev",
"release:dev": "changeset publish --tag dev",
"test": "jest",
"test:coverage": "jest --coverage",
"biome:check": "biome check ./src/**/*.ts",
"biome:format": "biome format ./src/**/*.ts --write",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix"
},
"devDependencies": {
"@biomejs/biome": "1.2.2",
"@changesets/changelog-github": "0.4.8",
"@changesets/cli": "2.26.1",
"@changesets/get-release-plan": "3.0.16",
"@changesets/types": "5.2.1",
"@commitlint/cli": "17.7.2",
"@commitlint/config-conventional": "17.7.0",
"@testing-library/jest-native": "5.4.3",
"@testing-library/react": "14.1.2",
"@testing-library/react-native": "12.4.1",
"@types/jest": "29.5.11",
"@types/node": "20.7.0",
"cross-env": "7.0.3",
"husky": "8.0.3",
"jest": "29.7.0",
"tsconfig": "workspace:*",
"turbo": "1.11.2",
"typescript": "5.0.4"
},
"packageManager": "pnpm@8.12.1",
"pnpm": {
"overrides": {
"@types/react": "18.2.45",
"react-native-builder-bob": "0.23.2"
}
}
}