-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.96 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
{
"version": "0.0.0",
"private": true,
"homepage": "https://github.com/itsjavi/storylite#readme",
"bugs": {
"url": "https://github.com/itsjavi/storylite/issues"
},
"repository": "[email protected]:itsjavi/storylite.git",
"license": "MIT",
"author": "Javi Aguilar https://itsjavi.com",
"scripts": {
"build": "lerna run build",
"clear-cache": "rm -rf packages/*/.next && jest --clearCache",
"dev": "lerna run dev --parallel",
"format": "pnpm lint-fix",
"format-pkg": "pnpm sort-package-json package.json packages/*/package.json examples/*/package.json",
"lerna-publish": "pnpm pre-versioning && lerna publish --no-private --conventional-commits --create-release github",
"lerna-release": "pnpm lerna-publish",
"lint": "pnpm lint-biome",
"lint-biome": "biome lint . --max-diagnostics 50",
"lint-biome-fix": "biome check --max-diagnostics 50 --apply .",
"lint-fix": "pnpm format-pkg && pnpm lint-biome-fix",
"pre-versioning": "pnpm type-check && pnpm lint && pnpm build && pnpm publint && pnpm test:ci",
"prepare": "pnpm format-pkg",
"pretty": "pnpm run format",
"preview": "pnpm build && http-server ./examples/react/dist",
"publint": "lerna run publint-check",
"quality-checks": "pnpm type-check && pnpm lint && pnpm build && pnpm publint && pnpm test:ci",
"test": "jest",
"test:ci": "jest --ci --coverage",
"test:coverage": "jest --coverage",
"type-check": "lerna run type-check"
},
"devDependencies": {
"@biomejs/biome": "^1.6.4",
"@swc/core": "^1.4.13",
"@swc/jest": "^0.2.36",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lerna": "^8.1.2",
"sort-package-json": "^2.10.0",
"typescript": "^5.4.5"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.5.0"
}
}