-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 4.52 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 4.52 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
106
{
"name": "@rijkshuisstijl-community/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/rijkshuisstijl-community.git",
"directory": "."
},
"engines": {
"//": "Update @types/node to match the highest node version here",
"node": ">=24 <=25",
"pnpm": "^10.17.0"
},
"workspaces": [
"./apps/**",
"./packages/*",
"./packages/components-css/*",
"./packages/components-react/*",
"./proprietary/*"
],
"dependencies": {
"http-server": "14.1.1",
"rimraf": "6.1.3"
},
"devDependencies": {
"@changesets/cli": "2.30.0",
"@chromatic-com/storybook": "4.1.3",
"@eslint/compat": "2.0.3",
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "9.39.4",
"@lerna-lite/cli": "4.11.5",
"@lerna-lite/publish": "4.11.5",
"@lerna-lite/run": "4.11.5",
"@types/node": "25.5.0",
"@typescript-eslint/eslint-plugin": "8.58.0",
"@typescript-eslint/parser": "8.58.0",
"chromatic": "13.3.5",
"concurrently": "9.2.1",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-json": "4.0.1",
"eslint-plugin-mdx": "3.7.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-sort-exports": "0.9.1",
"globals": "16.5.0",
"lint-staged": "16.4.0",
"markdownlint-cli": "0.48.0",
"npm-check-updates": "19.6.6",
"npm-package-json-lint": "9.1.0",
"npm-run-all": "4.1.5",
"postcss": "8.5.8",
"prettier": "3.8.1",
"stylelint": "16.26.1",
"stylelint-config-standard-scss": "13.1.0",
"stylelint-order": "7.0.1",
"typescript": "5.9.3",
"wait-on": "9.0.4"
},
"scripts": {
"prebuild": "pnpm run clean",
"build": "pnpm run --recursive build",
"build:dev": "APP_ENV=dev pnpm run --recursive build",
"clean": "rimraf dist/ && pnpm run --recursive clean",
"lint": "npm-run-all --continue-on-error lint:** lint-workspaces",
"lint:css": "stylelint --allow-empty-input '**/*.{css,scss}'",
"lint:js": "eslint --report-unused-disable-directives .",
"lint:md": "markdownlint '**/*.md'",
"lint:package-json": "npmPkgJsonLint '**/package.json'",
"lint:package-lock": "pnpm ls --recursive",
"lint-fix": "npm-run-all --continue-on-error lint-fix:** prettier",
"lint-fix:css": "stylelint --fix '**/*.{css,scss}'",
"lint-fix:js": "eslint --fix --report-unused-disable-directives .",
"lint-fix:md": "markdownlint --fix '**/*.md'",
"lint-workspaces": "pnpm run --no-bail --recursive lint",
"prepare": "husky",
"prettier": "prettier --write .",
"publish": "lerna publish from-package --yes",
"publish:changeset": "changeset publish",
"release": "lerna version prerelease --conventional-prerelease --no-changelog --no-private --yes",
"start": "node_modules/http-server/bin packages/storybook/dist/",
"start:rhc-templates": "pnpm run --dir apps/rhc-templates dev",
"storybook": "npm-run-all --parallel watch:**",
"test": "pnpm run test-workspaces",
"test-update": "npm-run-all --sequential clean lint build test",
"test-workspaces": "pnpm run --recursive --no-bail test",
"test:e2e": "pnpm run --no-bail --recursive test:e2e",
"typecheck": "pnpm run --no-bail --recursive typecheck",
"prewatch:storybook": "pnpm run --recursive --if-present build:stencil && pnpm run --recursive --if-present build:style-dictionary",
"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 run --parallel --recursive storybook",
"watch:packages": "pnpm run --parallel --recursive watch",
"watch:sd": "pnpm run --recursive watch:style-dictionary",
"test-storybook:ci": "pnpm --filter @rijkshuisstijl-community/storybook run playwright:install && concurrently -k -s first -n \"STORYBOOK,A11Y-TEST\" -c \"magenta,green\" \"pnpm --filter @rijkshuisstijl-community/storybook run prod-static -- --silent\" \"wait-on tcp:6006 && pnpm --filter @rijkshuisstijl-community/storybook run test-storybook\""
},
"packageManager": "pnpm@10.30.1+sha512.3590e550d5384caa39bd5c7c739f72270234b2f6059e13018f975c313b1eb9fefcc09714048765d4d9efe961382c312e624572c0420762bdc5d5940cdf9be73a"
}