-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.76 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.76 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
{
"name": "spirit",
"version": "1.0.0",
"description": "Spirit Design System",
"keywords": [
"spirit",
"design",
"system"
],
"license": "MIT",
"private": true,
"engines": {
"node": ">=20"
},
"workspaces": [
"apps/*",
"configs/*",
"examples/*",
"exporters/*",
"packages/*",
"scripts/*"
],
"scripts": {
"start": "yarn packages:start --ignore '@alma-oss/spirit-example*'",
"build": "lerna run build --scope '@alma-oss/spirit-*' --ignore '@alma-oss/spirit-example*' --ignore '@alma-oss/spirit-docsite' --ignore @lmc-eu/spirit-demo-app --ignore @alma-oss/spirit-storybook",
"es:lint": "eslint ./",
"es:lint:fix": "yarn es:lint --fix",
"format": "yarn format:check",
"format:check": "prettier --check ./",
"format:fix": "prettier --write ./",
"format:fix:changelog": "prettier --write ./**/CHANGELOG.md",
"prepare": "is-ci || husky install",
"storybook": "lerna run start --scope=@alma-oss/spirit-storybook",
"test": "yarn packages:test",
"test:unit": "yarn packages:test:unit",
"test:unit:coverage": "yarn packages:test:unit:coverage",
"test:e2e": "yarn playwright test",
"test:e2e:a11y": "yarn playwright test tests/e2e/a11y/",
"test:e2e:update": "yarn test:e2e --update-snapshots",
"test:e2e:report": "yarn test:e2e -- show-report",
"test:e2e:ui": "yarn test:e2e --ui-port=9323 --ui-host=0.0.0.0",
"types": "yarn packages:types",
"lint": "npm-run-all --parallel es:lint lint:markdown packages:lint",
"lint:fix": "npm-run-all --parallel es:lint:fix packages:lint:fix",
"lint:markdown": "remark ./ --quiet --frail",
"lint:commit": "yarn commitlint --verbose --color --from $(git merge-base origin/main HEAD)",
"packages:lint:fix": "lerna run lint:fix --parallel",
"packages:lint": "lerna run lint --parallel --no-sort",
"packages:start": "lerna run start --parallel",
"packages:test": "lerna run test",
"packages:test:unit": "lerna run test:unit",
"packages:test:unit:coverage": "lerna run test:unit:coverage",
"packages:types": "lerna run types --no-sort",
"packages:publish": "lerna publish",
"packages:diff": "lerna diff",
"packages:changed": "lerna changed",
"packages:list": "lerna ls",
"post-changelog": "yarn workspace @alma-oss/spirit-post-changelog post-changelog",
"release": "npm-run-all --serial build packages:publish",
"version": "yarn format:fix:changelog"
},
"devDependencies": {
"@alma-oss/commitlint-config": "catalog:lint",
"@almacareer/remark-config": "catalog:lint",
"@axe-core/playwright": "catalog:test",
"@commitlint/cli": "catalog:lint",
"@eslint/compat": "catalog:lint",
"@eslint/eslintrc": "catalog:lint",
"@omlet/cli": "catalog:design-tools",
"@playwright/test": "catalog:test",
"conventional-changelog-conventionalcommits": "catalog:lint",
"dotenv": "catalog:script",
"eslint": "catalog:lint",
"eslint-config-spirit": "workspace:^",
"eslint-plugin-prettier": "catalog:lint",
"husky": "catalog:lint",
"is-ci": "catalog:script",
"lerna": "patch:lerna@npm%3A9.0.3#~/.yarn/patches/lerna-npm-9.0.3-48cf5841a6.patch",
"lint-staged": "catalog:lint",
"netlify-cli": "catalog:script",
"npm-run-all2": "catalog:script",
"nx": "catalog:script",
"prettier": "catalog:lint",
"prettier-config-spirit": "workspace:^",
"prettier-plugin-toml": "catalog:lint",
"remark-cli": "catalog:lint",
"remark-frontmatter": "catalog:lint",
"remark-lint-heading-capitalization": "catalog:lint",
"typescript": "catalog:types",
"verdaccio": "catalog:script"
},
"packageManager": "yarn@4.12.0+sha512.f45ab632439a67f8bc759bf32ead036a1f413287b9042726b7cc4818b7b49e14e9423ba49b18f9e06ea4941c1ad062385b1d8760a8d5091a1a31e5f6219afca8"
}