-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.4 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 3.4 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
{
"name": "@example/design-system",
"version": "1.0.0-alpha.0",
"author": "Community for NL Design System",
"description": "Design system based on the NL Design System architecture",
"license": "EUPL-1.2",
"keywords": [
"nl-design-system"
],
"private": true,
"repository": {
"type": "git+ssh",
"url": "git@github.com:nl-design-system/example.git",
"directory": "."
},
"packageManager": "pnpm@10.30.3+sha512.c961d1e0a2d8e354ecaa5166b822516668b7f44cb5bd95122d590dd81922f606f5473b6d23ec4a5be05e7fcd18e8488d47d978bbe981872f1145d06e9a740017",
"engines": {
"//": "Update @types/node to match the highest node version here",
"node": ">=24 <=25",
"pnpm": "^10.17.0"
},
"workspaces": [
"./packages/*",
"./proprietary/*"
],
"devDependencies": {
"@changesets/cli": "2.29.8",
"@eslint/js": "9.39.2",
"@eslint/json": "0.14.0",
"@nl-design-system/eslint-config": "2.2.0",
"@nl-design-system/tsconfig": "1.0.5",
"@types/node": "24.10.9",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-perfectionist": "4.15.1",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-storybook": "10.2.14",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"markdownlint-cli": "0.47.0",
"npm-check-updates": "19.3.2",
"npm-package-json-lint": "9.1.0",
"postcss": "8.5.6",
"prettier": "3.8.1",
"stylelint": "17.3.0",
"stylelint-config-standard-scss": "17.0.0",
"stylelint-order": "7.0.1",
"typescript": "5.9.3",
"typescript-eslint": "8.54.0"
},
"scripts": {
"build": "pnpm --recursive run build",
"clean": "pnpm --recursive run clean",
"lint": "pnpm run --sequential '/^lint:.+$/'",
"lint:css": "stylelint --allow-empty-input '**/*.{css,scss}'",
"lint:js": "eslint",
"lint:md": "markdownlint '**/*.md'",
"lint:package-json": "npmPkgJsonLint .",
"lint:package-lock": "pnpm ls --recursive",
"lint:prettier": "prettier --check .",
"lint-fix": "pnpm run --sequential '/^lint-fix:.+$/",
"lint-fix:css": "stylelint --fix '**/*.{css,scss}'",
"lint-fix:js": "eslint --fix",
"lint-fix:md": "markdownlint --fix '**/*.md'",
"lint-build": "pnpm --recursive --if-present run lint-build",
"lint-prettier": "prettier --write .",
"prepare": "husky",
"changeset": "changeset add",
"changeset:empty": "changeset --empty",
"changeset:publish": "changeset publish",
"changeset:status": "changeset status --since origin/main",
"start": "http-server packages/storybook/dist/",
"storybook": "pnpm run '/^watch:.+$/'",
"test": "pnpm run --recursive test",
"test-update": "pnpm run --sequential '/^test-update:.+$/'",
"test-update:clean": "pnpm run clean",
"test-update:lint": "pnpm run lint",
"test-update:build": "pnpm run build",
"test-update:test": "pnpm run test",
"update-patch": "npm-check-updates --configFileName .ncurc.patch.cjs",
"update-minor": "npm-check-updates --configFileName .ncurc.minor.cjs",
"update-major": "npm-check-updates --configFileName .ncurc.major.cjs",
"watch:storybook": "pnpm --filter @example/web-components-stencil run build:stencil && pnpm --filter @example/design-tokens run build:style-dictionary && pnpm --filter ./packages/storybook run storybook",
"watch:style-dictionary": "pnpm --filter @example/design-tokens run watch:style-dictionary"
},
"dependencies": {
"http-server": "14.1.1"
}
}