forked from nl-design-system/utrecht
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 4.91 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"version": "0.0.1",
"author": "Community for NL Design System",
"description": "Template for design systems based on the NL Design System architecture",
"license": "EUPL-1.2",
"name": "@utrecht/design-system",
"keywords": [
"nl-design-system"
],
"private": true,
"workspaces": [
"./documentation/",
"./components/",
"./components/*/",
"./packages/*",
"./packages/component-library-react/packages/*",
"./proprietary/*"
],
"repository": {
"type": "git+ssh",
"url": "[email protected]:nl-design-system/utrecht.git",
"directory": "."
},
"engines": {
"node": "^20",
"pnpm": "^9"
},
"devDependencies": {
"@changesets/cli": "2.27.6",
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@lerna-lite/cli": "3.5.1",
"@nrwl/cli": "15.9.7",
"@nrwl/nx-cloud": "15.3.5",
"@nrwl/web": "15.9.7",
"@nrwl/workspace": "15.9.7",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.57.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-mdx": "2.3.4",
"eslint-plugin-react": "7.34.3",
"eslint-plugin-vue": "9.26.0",
"glob": "10.4.2",
"html-validate": "8.20.1",
"husky": "9.0.11",
"lint-staged": "15.2.7",
"markdownlint-cli": "0.41.0",
"npm-check-updates": "16.14.20",
"npm-package-json-lint": "8.0.0",
"nx": "15.9.7",
"postcss": "8.4.38",
"prettier": "2.8.8",
"rimraf": "5.0.7",
"stylelint": "16.6.1",
"stylelint-config-standard-scss": "13.1.0",
"stylelint-order": "6.0.4",
"typescript": "4.9.5"
},
"scripts": {
"add-repository-directory": "node ./add-repository-directory.mjs",
"build": "pnpm run nx-build --skip-nx-cache",
"nx-build": "nx run-many --target=build --all --parallel",
"clean": "pnpm run --if-present --recursive clean",
"docs": "pnpm run --workspace packages/docusaurus start",
"find-undocumented-tokens": "pnpm run --dir proprietary/design-tokens/ build:stylelint && pnpm run lint:css --config ./.tokens.stylelintrc.json",
"lint": "pnpm run nx-lint --skip-nx-cache",
"lint-fix": "pnpm run nx-lint-fix --skip-nx-cache",
"lint-fix:css": "stylelint --fix '**/*.{css,scss}'",
"lint-fix:js": "eslint --ext '.js,.json,.jsx,.mdx,.ts,.tsx,.vue' --fix --report-unused-disable-directives .",
"lint-fix:md": "markdownlint --fix '**/*.md'",
"lint:changeset": "changeset status",
"lint:css": "stylelint '**/*.{css,scss}'",
"lint:js": "eslint --ext '.js,.json,.jsx,.mdx,.ts,.tsx,.vue' --report-unused-disable-directives .",
"lint:md": "markdownlint '**/*.md'",
"lint:package-json": "npmPkgJsonLint .",
"lint:package-lock": "pnpm ls --recursive",
"lint:prettier": "prettier --check .",
"lint-build": "pnpm run --recursive lint-build",
"nx-lint": "npx nx run-many --target=lint --all --parallel",
"nx-lint-fix": "npx nx run-many --target=lint-fix --all --parallel",
"prepare": "husky install",
"prettier": "prettier --list-different --write .",
"publish": "lerna publish from-package --yes",
"publish:changeset": "changeset publish",
"release": "lerna version prerelease --conventional-prerelease --no-changelog --no-private --yes",
"storybook": "pnpm run storybook-css",
"docusaurus": "nx start docusaurus",
"storybook-all": "nx run-many --target=storybook --all --parallel --maxParallel=10",
"storybook-css": "nx run-many --nx-bail --parallel --projects=storybook --target=storybook",
"storybook-angular": "nx run-many --nx-bail --parallel --projects=storybook-angular --target=storybook",
"storybook-react": "nx run-many --nx-bail --parallel --projects=storybook-react --target=storybook",
"storybook-vue": "nx run-many --nx-bail --parallel --projects=storybook-vue --target=storybook",
"serve": "nx serve design-system-website",
"serve-docusaurus": "nx serve docusaurus",
"serve-storybook": "nx serve storybook",
"serve-storybook-angular": "nx serve storybook-angular",
"serve-storybook-react": "nx serve storybook-react",
"serve-storybook-vue": "nx serve storybook-vue",
"test": "pnpm run nx-test --skip-nx-cache",
"nx-test": "nx run-many --target=test --all --parallel",
"test-build": "pnpm run --recursive test-build",
"test-update": "pnpm run lint && pnpm run build && pnpm run test && pnpm run lint-build && pnpm run test-build",
"update-major": "npm-check-updates --configFileName .ncurc.major.js",
"update-minor": "npm-check-updates --configFileName .ncurc.minor.js",
"update-patch": "npm-check-updates --configFileName .ncurc.patch.js"
},
"pnpm": {
"patchedDependencies": {
"@stencil/[email protected]": "patches/@[email protected]"
}
},
"packageManager": "[email protected]+sha256.9551e803dcb7a1839fdf5416153a844060c7bce013218ce823410532504ac10b"
}