-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.55 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.55 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
{
"name": "@nl-design-system-community/theme-wizard",
"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": [
"expertteam-digitale-toegankelijkheid",
"nl-design-system"
],
"private": true,
"repository": {
"type": "git+ssh",
"url": "git@github.com:nl-design-system/theme-wizard.git",
"directory": "."
},
"packageManager": "pnpm@10.30.1+sha512.3590e550d5384caa39bd5c7c739f72270234b2f6059e13018f975c313b1eb9fefcc09714048765d4d9efe961382c312e624572c0420762bdc5d5940cdf9be73a",
"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.30.0",
"@eslint/js": "10.0.1",
"@eslint/json": "1.2.0",
"@nl-design-system/eslint-config": "2.2.0",
"@types/node": "24.12.0",
"@vitest/eslint-plugin": "1.6.14",
"eslint": "10.1.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-perfectionist": "5.8.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-zod": "3.5.0",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"markdownlint-cli": "0.48.0",
"npm-check-updates": "20.0.0",
"npm-package-json-lint": "10.2.0",
"postcss": "8.5.8",
"prettier": "3.8.1",
"stylelint": "17.6.0",
"stylelint-config-astro": "2.0.0",
"stylelint-config-standard-scss": "17.0.0",
"stylelint-order": "8.1.1",
"typescript": "6.0.2",
"typescript-eslint": "8.58.0"
},
"scripts": {
"dev": "pnpm --recursive --parallel run dev",
"build": "pnpm --recursive run build",
"clean": "pnpm --recursive run clean",
"lint": "pnpm --if-present run --sequential '/^lint:.+$/' && pnpm --if-present run --recursive lint",
"lint:md": "markdownlint '**/*.md'",
"lint:package-json": "npmPkgJsonLint .",
"lint:package-lock": "pnpm ls --recursive",
"lint:prettier": "prettier --check .",
"lint-build": "pnpm --recursive --if-present run lint-build",
"lint-fix": "pnpm --if-present run --sequential '/^lint-fix:.+$/' && pnpm run lint-prettier",
"lint-fix:css": "pnpm --recursive --if-present run lint-fix:css",
"lint-fix:js": "pnpm --recursive --if-present run lint-fix:js",
"lint-fix:md": "markdownlint --fix '**/*.md'",
"lint-prettier": "prettier --write .",
"prepare": "husky",
"changeset": "changeset add",
"changeset:empty": "changeset --empty",
"changeset:publish": "changeset publish",
"changeset:status": "changeset status --since origin/main",
"test": "pnpm run --recursive test",
"test-coverage": "pnpm run --recursive test-coverage",
"test-build": "pnpm run --recursive test-build",
"test-install-browsers": "pnpm run --recursive --if-present test-install-browsers",
"test-e2e": "pnpm run --recursive test-e2e",
"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:style-dictionary": "pnpm --filter @nl-design-system-community/design-tokens run watch:style-dictionary"
},
"dependencies": {
"http-server": "14.1.1"
}
}