generated from nl-design-system/example
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 3.57 KB
/
package.json
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
{
"name": "@gemeente-rotterdam/design-system",
"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": "[email protected]:nl-design-system/rotterdam.git",
"directory": "."
},
"engines": {
"node": "^22",
"pnpm": "^9"
},
"workspaces": [
"./wicket/",
"./wicket/*",
"./packages/*",
"./components/*",
"./proprietary/*"
],
"devDependencies": {
"@changesets/cli": "2.27.11",
"@eslint/js": "9.17.0",
"@eslint/json": "0.9.0",
"@nl-design-system/eslint-config": "0.0.1",
"@types/node": "22.10.2",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-perfectionist": "3.9.1",
"eslint-plugin-react": "7.37.3",
"globals": "15.14.0",
"husky": "9.1.7",
"lint-staged": "15.3.0",
"markdownlint-cli": "0.43.0",
"npm-check-updates": "17.1.13",
"npm-package-json-lint": "8.0.0",
"npm-run-all": "4.1.5",
"postcss": "8.4.49",
"prettier": "3.4.2",
"prettier-plugin-java": "2.6.5",
"stylelint": "16.12.0",
"stylelint-config-standard-scss": "14.0.0",
"stylelint-order": "6.0.4",
"typescript": "5.7.2",
"typescript-eslint": "8.19.0"
},
"scripts": {
"build": "pnpm --recursive run build",
"clean": "pnpm --recursive run clean",
"lint": "npm-run-all --continue-on-error lint:** lint-workspaces",
"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-fix": "npm-run-all --continue-on-error lint-fix:** prettier",
"lint-fix:css": "stylelint --fix '**/*.{css,scss}'",
"lint-fix:js": "eslint --fix",
"lint-fix:md": "markdownlint --fix '**/*.md'",
"lint-workspaces": "pnpm --recursive run lint",
"lint-build": "pnpm --recursive run lint-build",
"prepare": "husky",
"prettier": "prettier --write .",
"publish:changeset": "changeset publish",
"start": "node_modules/http-server/bin packages/storybook/dist/",
"storybook": "npm-run-all --parallel watch:**",
"test": "npm run test-workspaces",
"test-update": "npm-run-all --sequential clean lint build test",
"test-workspaces": "pnpm --recursive run test",
"prewatch:storybook": "pnpm --aggregate-output --filter @gemeente-rotterdam/design-tokens --filter @gemeente-rotterdam/web-components-stencil build",
"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 @gemeente-rotterdam/storybook run storybook",
"watch:style-dictionary": "pnpm --filter @gemeente-rotterdam/design-tokens run watch",
"wicket:build": "mvn --no-transfer-progress --offline clean install && pnpm run wicket:build-docs",
"wicket:install-and-build": "mvn --no-transfer-progress clean install && pnpm run wicket:build-docs",
"wicket:build-docs": "mvn exec:java@generateStoryBook -pl :docs-wicket",
"wicket:clean": "mvn clean",
"wicket:install": "mvn --no-transfer-progress dependency:go-offline",
"wicket:dev": "mvn exec:java@runDocs -pl :docs-wicket"
},
"dependencies": {
"http-server": "14.1.1"
},
"packageManager": "[email protected]+sha256.b6fd0bfda555e7e584ad7e56b30c68b01d5a04f9ee93989f4b93ca8473c49c74"
}