forked from public-ui/kolibri
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 2.49 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 2.49 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
{
"version": "4.3.0-rc.6",
"devDependencies": {
"@evilmartians/lefthook": "2.1.10",
"license-report": "6.8.5",
"npm-check-updates": "22.2.9",
"npm-run-all2": "8.0.4",
"prettier": "3.9.6",
"prettier-plugin-organize-imports": "4.3.0",
"stylelint": "17.14.1",
"stylelint-config-recommended-scss": "17.0.1",
"stylelint-config-standard": "40.0.0",
"stylelint-order": "8.1.1",
"stylelint-scss": "7.2.0"
},
"engines": {
"pnpm": "^10"
},
"private": true,
"scripts": {
"prepare": "lefthook install",
"build": "pnpm -r build",
"check:scripts": "node scripts/check-no-relative-node-modules.mjs",
"clean": "git clean -f -d -X",
"clean:branches": "git branch --merged | grep -v \\* | xargs git branch -D",
"clean:pnpm": "pnpm -r exec rimraf pnpm-lock.yaml && rimraf pnpm-lock.yaml && pnpm clean",
"format": "pnpm format:config && pnpm format:markdown && pnpm format:packages",
"format:config": "prettier --write '*.{js,ts,json,yml,yaml}' '.*.{js,ts,json,yml,yaml}' 'packages/*/*.{js,ts,json,yml,yaml}' 'packages/*/.*.{js,ts,json,yml,yaml}' 'packages/*/tsconfig*.json' 'packages/*/*.config.{js,ts}' 'packages/{*,*/*}/eslint.config.mjs'",
"format:markdown": "prettier --write '**/*.md'",
"format:packages": "pnpm -r format --write",
"license:report": "node scripts/license-reports.mjs --output docs/LICENSE_REPORTS.md",
"lint": "pnpm -r lint",
"lint:eslint": "pnpm -r --no-bail lint:eslint",
"lint:stylelint": "pnpm -r --no-bail lint:stylelint",
"lint:tsc": "pnpm -r --no-bail lint:tsc",
"unused": "pnpm -r unused",
"ncu:major": "ncu && pnpm -r exec ncu",
"ncu:minor": "ncu -t minor -u && pnpm -r exec ncu -t minor -u -x @kern-ux/*,@playwright/*,@stencil/*,@typescript-eslint/*",
"ncu:patch": "ncu -t patch -u && pnpm -r exec ncu -t patch -u -x @kern-ux/*",
"pack": "pnpm -r exec pnpm pack",
"reinstall": "pnpm clean:pnpm && pnpm i",
"smoketest": "pnpm clean && pnpm i && pnpm build && pnpm format && pnpm lint && pnpm test:unit && pnpm test:e2e && pnpm unused",
"test": "pnpm -r test",
"test-reset-and-update": "rimraf packages/themes/**/snapshots/** && pnpm test:update",
"test:e2e": "pnpm -r test:e2e",
"test:unit": "pnpm -r test:unit",
"test:update": "pnpm test:update:e2e && pnpm test:update:unit",
"test:update:e2e": "pnpm -r --workspace-concurrency=1 test:update:e2e",
"test:update:unit": "pnpm -r --workspace-concurrency=1 test:update:unit",
"update": "pnpm ncu:minor && pnpm ncu:major",
"version": "node scripts/update-publiccode.mjs && git add publiccode.yml"
}
}