-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.72 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
{
"name": "@quiltt/quiltt-js",
"version": "1.0.0",
"description": "Quiltt's Open Source Projects",
"license": "MIT",
"main": "index.js",
"type": "module",
"scripts": {
"prebuild": "[[ $CI = true ]] && npx pnpm@9 install --store=node_modules/.pnpm-store || echo skipping pnpm install; turbo run prebuild",
"build": "turbo run build",
"build:packages": "turbo run build --filter='./packages/*'",
"changeset": "npx changeset",
"check:packages": "pnpm check-dependency-version-consistency .",
"clean": "turbo run clean",
"coverage": "vitest run --coverage",
"cypress": "turbo run cypress",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"publish": "pnpm run build && npx changeset tag && pnpm -r publish packages --no-git-checks --filter=./packages/**",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"version": "npx changeset version",
"postversion": "pnpm exec pnpm install --filter=./packages/** "
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.12",
"@testing-library/react": "16.2.0",
"@testing-library/react-native": "13.0.1",
"@types/node": "22.13.2",
"@vitejs/plugin-react": "4.3.4",
"@vitest/coverage-istanbul": "3.0.5",
"check-dependency-version-consistency": "5.0.0",
"happy-dom": "17.1.0",
"turbo": "2.4.2",
"vite": "6.1.0",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.0.5",
"vitest-react-native": "0.1.5"
},
"packageManager": "pnpm@10.3.0",
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"@swc/core",
"cypress",
"detox",
"dtrace-provider",
"esbuild"
]
}
}