-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.55 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
{
"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.10",
"@testing-library/react": "16.1.0",
"@testing-library/react-native": "12.9.0",
"@types/node": "22.10.2",
"@vitejs/plugin-react": "4.3.3",
"@vitest/coverage-v8": "2.0.5",
"check-dependency-version-consistency": "5.0.0",
"happy-dom": "15.10.2",
"turbo": "2.3.3",
"vite": "5.4.6",
"vite-tsconfig-paths": "5.0.1",
"vitest": "2.0.5",
"vitest-react-native": "0.1.5"
},
"packageManager": "[email protected]"
}