-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 4.02 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 4.02 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
{
"name": "@gemeente-denhaag/design-system",
"version": "0.1.0",
"private": true,
"description": "A library of React components for the Design System of The Netherlands",
"bugs": "https://github.com/nl-design-system/denhaag/issues",
"repository": {
"type": "git",
"url": "https://github.com/nl-design-system/denhaag.git",
"directory": "."
},
"license": "EUPL-1.2",
"author": "Municipality of The Hague",
"scripts": {
"build": "pnpm run build:library && pnpm run build:storybook",
"build:library": "pnpm run --recursive build",
"build:storybook": "pnpm run --if-present --recursive build:storybook",
"changeset": "changeset",
"clean": "pnpm run --parallel --recursive clean && rimraf .rollup-cache",
"lint": "npm-run-all --continue-on-error lint:** && pnpm run --recursive lint",
"lint-fix": "npm-run-all --continue-on-error lint-fix:** prettier",
"lint-fix:css": "stylelint --fix \"**/*.{css,scss}\" --config .stylelintrc.json",
"lint-fix:js": "eslint --fix --report-unused-disable-directives .",
"lint:css": "stylelint --config .stylelintrc.json \"**/*.{css,scss}\"",
"lint:js": "eslint --report-unused-disable-directives .",
"lint:package": "npmPkgJsonLint \"**/package.json\"",
"lint:prettier": "prettier --check .",
"pkg:set": "find ./components -type f -name 'package.json' -execdir npm pkg set scripts.typecheck='tsc --noEmit' \\;",
"prepare": "husky",
"preinstall": "npx only-allow pnpm",
"prettier": "prettier --write .",
"publish": "changeset publish",
"sync:licenses": "node ./scripts/sync-licenses.mjs",
"storybook": "npm-run-all --parallel watch:*",
"test-update": "npm-run-all --sequential lint typecheck build",
"update-patch": "npm-check-updates --configFileName .ncurc.patch.js",
"update-minor": "npm-check-updates --configFileName .ncurc.minor.js",
"update-major": "npm-check-updates --configFileName .ncurc.major.js",
"watch:components": "pnpm run --parallel --recursive watch:components",
"watch:storybook": "pnpm run --if-present --recursive storybook",
"watch:style-dictionary": "pnpm run --parallel --recursive watch:style-dictionary",
"typecheck": "pnpm run --recursive typecheck"
},
"devDependencies": {
"@changesets/cli": "2.29.8",
"@commitlint/cli": "20.2.0",
"@commitlint/config-conventional": "20.2.0",
"@rollup/plugin-commonjs": "29.0.0",
"@rollup/plugin-node-resolve": "16.0.3",
"@svgr/rollup": "8.1.0",
"@types/node": "24.10.1",
"@types/react": "19.2.7",
"@typescript-eslint/eslint-plugin": "8.48.1",
"@typescript-eslint/parser": "8.48.1",
"chokidar-cli": "3.0.0",
"ejs": "3.1.10",
"eslint": "9.39.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-json": "4.0.1",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-mdx": "3.6.2",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-storybook": "10.1.4",
"express": "5.2.1",
"globals": "16.5.0",
"helmet": "8.1.0",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"npm-check-updates": "19.1.2",
"npm-package-json-lint": "9.0.0",
"npm-run-all": "4.1.5",
"postcss": "8.5.6",
"postcss-discard-duplicates": "7.0.2",
"prettier": "3.7.4",
"rimraf": "6.1.2",
"rollup": "4.53.3",
"rollup-plugin-node-externals": "8.1.2",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-summary": "3.0.1",
"rollup-plugin-typescript2": "0.36.0",
"sass": "1.94.2",
"style-dictionary": "5.1.1",
"stylelint": "16.26.1",
"stylelint-config-standard-scss": "16.0.0",
"tslib": "2.8.1",
"typescript": "5.9.3",
"uuid": "13.0.0"
},
"pnpm": {
"overrides": {
"@isaacs/brace-expansion@<=5.0.0": "^5.0.1"
}
},
"engines": {
"node": ">=24 <=25",
"pnpm": "^10.17.0"
},
"packageManager": "pnpm@10.30.1+sha512.3590e550d5384caa39bd5c7c739f72270234b2f6059e13018f975c313b1eb9fefcc09714048765d4d9efe961382c312e624572c0420762bdc5d5940cdf9be73a"
}