-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.48 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.48 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "kmi-monorepo",
"version": "1.0.0",
"private": true,
"description": "",
"keywords": [],
"license": "ISC",
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "kmi-scripts bootstrap",
"build": "kmi-scripts turbo build",
"change": "pnpm changeset",
"check-dependency-version": "check-dependency-version-consistency . --ignore-package kmi-monorepo --ignore-dep cosmiconfig",
"checkPackageFiles": "kmi-scripts checkPackageFiles",
"dev": "kmi-scripts turbo dev --parallel",
"dev:packages": "kmi-scripts turbo dev --parallel --filter='./packages/*'",
"format": "prettier --write .",
"preinstall": "npx only-allow pnpm",
"postinstall": "simple-git-hooks && kmi-scripts postinstall",
"lint": "biome check . --diagnostic-level=warn",
"new": "kmi-scripts create",
"checkNpmRelease": "kmi-scripts checkNpmRelease",
"release": "pnpm checkPackageFiles && pnpm run ci && kmi-scripts release",
"release:beta": "pnpm release --tag next --preid beta",
"release:canary": "kmi-scripts releaseCanary",
"test": "vitest",
"test:ci": "vitest run",
"test:ci:e2e": "E2E=1 vitest run --no-file-parallelism",
"test:e2e": "pnpm --filter=./e2e/* run test:e2e",
"test:e2e:turbo": "turbo --filter=./e2e/* run test:e2e",
"typecheck": "tsc --noEmit",
"ci": "run-p typecheck test:ci test:e2e:turbo",
"changelog": "conventional-changelog -i ./docs/src/CHANGELOG.md -s -u false -r 0 --config ./.changelogrc.js",
"changelog:generate": "conventional-changelog --config ./.changelogrc.js -u"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false",
"commit-msg": "pnpm kmi-scripts verifyCommit $1"
},
"lint-staged": {
"*": [
"prettier --write --cache --ignore-unknown"
],
"*.{ts,tsx}": [
"biome check --write --formatter-enabled=false --no-errors-on-unmatched",
"prettier --write --ignore-unknown"
],
"package.json": "pnpm run check-dependency-version"
},
"resolutions": {
"esbuild": "0.17.19"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/changelog-github": "0.5.1",
"@changesets/cli": "^2.27.9",
"@kmijs/babel-preset-react": "workspace:*",
"@playwright/test": "1.32.3",
"@pnpm/find-workspace-packages": "6.0.9",
"@scripts/kmi-scripts": "workspace:*",
"@scripts/prettier-plugin-sort-keys": "workspace:*",
"@scripts/test-utils": "workspace:*",
"@scripts/tsconfig": "workspace:*",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/node": "20.8.9",
"check-dependency-version-consistency": "4.1.0",
"conventional-changelog-cli": "5.0.0",
"father": "4.3.6",
"globby": "13.2.2",
"lint-staged": "15.0.2",
"npm-run-all": "4.1.5",
"path-serializer": "0.4.0",
"prebundle": "1.2.5",
"prettier": "3.0.3",
"prettier-plugin-packagejson": "2.3.0",
"simple-git-hooks": "2.9.0",
"start-server-and-test": "^1.15.2",
"tsx": "4.19.4",
"turbo": "1.10.16",
"typescript": "5.2.2",
"unbuild": "2.0.0",
"vitest": "^3.1.3"
},
"packageManager": "pnpm@8.15.8",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.0.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react",
"react-dom",
"postcss",
"webpack",
"eslint",
"stylelint",
"styled-components"
]
}
},
"_local": "This flag is used to check if the development in local, Please do not delete."
}