generated from nl-design-system/example
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
91 lines (91 loc) · 3.81 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
{
"name": "@nl-design-system-unstable/themes",
"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",
"private": true,
"repository": {
"type": "git+ssh",
"url": "[email protected]:nl-design-system/themes.git",
"directory": "."
},
"packageManager": "[email protected]+sha512.22721b3a11f81661ae1ec68ce1a7b879425a1ca5b991c975b074ac220b187ce56c708fe5db69f4c962c989452eee76c82877f4ee80f474cebd61ee13461b6228",
"engines": {
"node": "^20",
"pnpm": "^9"
},
"workspaces": [
"./packages/*",
"./packages/components-react/*",
"./proprietary/*"
],
"devDependencies": {
"@babel/eslint-parser": "7.25.1",
"@babel/plugin-syntax-import-assertions": "7.24.7",
"@changesets/cli": "2.27.7",
"@gemeente-denhaag/process-steps": "0.1.0-alpha.230",
"@gemeente-denhaag/step-marker": "0.0.1-alpha.102",
"@nl-design-system/component-index": "1.0.0-alpha.30",
"@types/node": "20.14.14",
"@typescript-eslint/eslint-plugin": "8.0.0",
"@typescript-eslint/parser": "8.0.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-mdx": "3.1.5",
"eslint-plugin-react": "7.35.0",
"husky": "9.1.4",
"lint-staged": "15.2.7",
"lodash.get": "4.4.2",
"markdownlint-cli": "0.41.0",
"npm-check-updates": "17.0.0",
"npm-package-json-lint": "8.0.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.8",
"pure-color": "1.3.0",
"rimraf": "6.0.1",
"sass": "1.77.8",
"style-dictionary": "4.0.1",
"stylelint": "16.8.1",
"stylelint-config-standard-scss": "13.1.0"
},
"scripts": {
"build": "pnpm run clean && pnpm run --recursive build",
"clean": "rimraf dist/ documentation/build/ packages/storybook/dist && pnpm run --recursive clean",
"deploy": "npm-run-all deploy:**",
"lint": "npm-run-all --continue-on-error lint:** && prettier --check .",
"lint:css": "stylelint --allow-empty-input '**/*.{css,scss}'",
"lint:js": "eslint --no-error-on-unmatched-pattern --ext .js,.cjs,.mjs,.jsx,.ts,.tsx .",
"lint:md": "markdownlint '**/*.md'",
"lint:package-json": "npmPkgJsonLint .",
"lint-fix": "npm-run-all --continue-on-error lint-fix:** prettier",
"lint-fix:css": "stylelint --fix '**/*.{css,scss}'",
"lint-fix:js": "eslint --fix --ext .js,.cjs,.mjs,.jsx,.ts,.tsx",
"lint-fix:md": "markdownlint --fix '**/*.md'",
"lint-release": "changeset status",
"prepare": "husky",
"prettier": "prettier --write .",
"publish": "changeset publish",
"start": "node_modules/http-server/bin/http-server dist/",
"storybook": "npm-run-all --parallel watch:**",
"test": "npm-run-all test-workspaces test-build:**",
"test-build:css": "find proprietary/*/dist -type d \\( -name node_modules \\) -prune -false -o -name '*.css' -print0 -exec sass --no-source-map {}:/dev/null \\;",
"test-build:scss": "find proprietary/*/dist -type d \\( -name node_modules \\) -prune -false -o -name '*.scss' -print0 -exec sass --no-source-map {} \\;",
"test-update": "npm-run-all --sequential clean lint build test",
"test-workspaces": "pnpm run --recursive --aggregate-output 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 @nl-design-system-unstable/storybook run storybook",
"watch:style-dictionary": "pnpm run --recursive watch:style-dictionary"
},
"dependencies": {
"http-server": "14.1.1"
},
"pnpm": {
"patchedDependencies": {
"@dynamize/[email protected]": "patches/@[email protected]"
}
}
}