-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.36 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.36 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
{
"name": "@solid-design-system/root",
"version": "1.0.0",
"homepage": "https://solid-design-system.fe.union-investment.de/docs/",
"author": {
"name": "Union Investment"
},
"packageManager": "pnpm@10.28.2+sha512.41872f037ad22f7348e3b1debbaf7e867cfd448f2726d9cf74c08f19507c31d2c8e7a11525b983febc2df640b5438dee6023ebb1f84ed43cc2d654d2bc326264",
"description": "",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"test": "pnpm --workspace-concurrency=1 --recursive test",
"prepare": "node .husky/install.mjs",
"verify": "pnpm format.verify && pnpm lint.verify && pnpm --recursive --if-present --workspace-concurrency=1 verify",
"fix": "pnpm lint.fix && pnpm format.fix",
"lint.fix": "cd packages/eslint-plugin && pnpm build && cd ../.. && eslint packages --max-warnings 0 --fix",
"lint.verify": "cd packages/eslint-plugin && pnpm build && cd ../.. && eslint packages --max-warnings 0 && echo '✅ Linting verified'",
"format.verify": "prettier --check --log-level warn . && echo '✅ Formatting verified'",
"format.fix": "prettier --write --log-level warn .",
"changeset": "changeset"
},
"lib": "es2022",
"keywords": [],
"license": "MIT",
"engines": {
"node": "^22.0.0",
"pnpm": "^10.28.2"
},
"lint-staged": {
"*": [
"pnpm fix"
]
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@eslint/compat": "^2.0.2",
"@eslint/eslintrc": "^3.3.4",
"@eslint/js": "^10.0.1",
"@octokit/rest": "^22.0.0",
"@solid-design-system/eslint-plugin": "workspace:*",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"changesets-changelog-clean": "^1.3.0",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-chai-expect": "^3.1.0",
"eslint-plugin-chai-friendly": "^1.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-lit": "^2.2.1",
"eslint-plugin-lit-a11y": "^5.1.1",
"eslint-plugin-storybook": "^10.2.12",
"eslint-plugin-wc": "^3.1.0",
"globals": "^17.3.0",
"globby": "^16.1.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.0",
"prettier": "^3.8.1"
},
"pnpm": {
"patchedDependencies": {
"wc-storybook-helpers": "patches/wc-storybook-helpers.patch",
"tailwindcss": "patches/tailwindcss.patch"
}
}
}