forked from nl-design-system/utrecht
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 5.11 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
{
"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/icon/",
"./packages/*",
"./proprietary/*"
],
"repository": {
"type": "git+ssh",
"url": "git@github.com:nl-design-system/utrecht.git"
},
"engines": {
"node": "^16.16.0",
"npm": "^8"
},
"devDependencies": {
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@lerna-lite/cli": "1.11.2",
"@nrwl/cli": "14.5.10",
"@nrwl/nx-cloud": "14.6.2",
"@nrwl/web": "14.6.4",
"@nrwl/workspace": "14.5.10",
"@typescript-eslint/eslint-plugin": "5.32.0",
"@typescript-eslint/parser": "5.32.0",
"eslint": "8.21.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.7.0",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-mdx": "1.17.1",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-vue": "9.3.0",
"html-validate": "7.1.2",
"husky": "8.0.1",
"lint-staged": "12.5.0",
"markdownlint-cli": "0.32.1",
"npm-check-updates": "16.0.5",
"npm-package-json-lint": "6.3.0",
"npm-run-all": "4.1.5",
"nx": "14.5.10",
"postcss": "8.4.14",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"stylelint": "14.9.1",
"stylelint-config-prettier": "9.0.3",
"stylelint-config-standard-scss": "3.0.0",
"stylelint-order": "5.0.0",
"typescript": "4.7.4"
},
"scripts": {
"build": "npm run nx-build -- --skip-nx-cache",
"nx-build": "nx run-many --target=build --all --parallel",
"clean": "npm run --if-present --workspaces clean",
"docs": "npm run --workspace packages/docusaurus start",
"find-undocumented-tokens": "npm run --workspace proprietary/design-tokens/ build:stylelint && npm run lint:css -- --config ./.tokens.stylelintrc.json",
"lint": "npm run nx-lint -- --skip-nx-cache",
"lint-fix": "npm 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:css": "stylelint '**/*.{css,scss}'",
"lint:html": "find . -type d \\( -name coverage -or -name dist -or -name node_modules -or -name build -or -name .docusaurus -or -name component-library-angular \\) -prune -false -o -name '*.html' -print0 | xargs -0 npx html-validate",
"lint:js": "eslint --ext '.js,.json,.jsx,.mdx,.ts,.tsx,.vue' --report-unused-disable-directives .",
"lint:md": "markdownlint '**/*.md'",
"lint:package-json": "npmPkgJsonLint '**/package.json'",
"lint:package-lock": "pnpm ls --recursive",
"lint:prettier": "prettier --check .",
"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",
"release": "lerna version prerelease --conventional-prerelease --no-changelog --no-private --yes",
"storybook": "npm run storybook-css",
"docusaurus": "nx start packages-docusaurus",
"storybook-all": "nx run-many --target=storybook --all --parallel --maxParallel=10",
"storybook-css": "nx run-many --nx-bail --parallel --projects=packages-storybook --target=storybook",
"storybook-angular": "nx run-many --nx-bail --parallel --projects=packages-storybook-angular --target=storybook",
"storybook-react": "nx run-many --nx-bail --parallel --projects=packages-storybook-react --target=storybook",
"storybook-vue": "nx run-many --nx-bail --parallel --projects=packages-storybook-vue --target=storybook",
"serve": "nx serve packages-design-system-website",
"serve-docusaurus": "nx serve packages-docusaurus",
"serve-storybook": "nx serve packages-storybook",
"serve-storybook-angular": "nx serve packages-storybook-angular",
"serve-storybook-react": "nx serve packages-storybook-react",
"serve-storybook-vue": "nx serve packages-storybook-vue",
"test": "npm run nx-test -- --skip-nx-cache",
"nx-test": "nx run-many --target=test --all --parallel",
"test-update": "npm-run-all --sequential lint build test",
"update-major": "npm-check-updates --configFileName .ncurc.major.js --deep --dep dev,prod --target latest --upgrade && npm install --legacy-peer-deps",
"update-minor": "npm-check-updates --configFileName .ncurc.minor.js --deep --dep dev,prod --target minor --upgrade && npm install --legacy-peer-deps",
"update-patch": "npm-check-updates --configFileName .ncurc.patch.js --deep --dep dev,prod --target patch --upgrade && npm install --legacy-peer-deps"
},
"pnpm": {
"patchedDependencies": {
"@stencil/core@2.17.2": "patches/@stencil__core@2.17.2.patch",
"@storybook/angular@6.5.10": "patches/@storybook__angular@6.5.10.patch"
}
}
}