forked from nl-design-system/themes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 3.94 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
{
"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",
"name": "@nl-design-system-unstable/themes",
"private": true,
"engines": {
"node": "^16.11.0 || ^18.0.0",
"npm": "^8 || ^9"
},
"workspaces": [
"./packages/*",
"./proprietary/*"
],
"devDependencies": {
"@lerna-lite/cli": "2.3.0",
"@lerna-lite/publish": "2.3.0",
"@lerna-lite/run": "2.3.0",
"@nl-design-system/component-index": "1.0.0-alpha.12",
"@types/node": "18.16.10",
"@typescript-eslint/eslint-plugin": "5.59.6",
"@typescript-eslint/parser": "5.59.6",
"@utrecht/component-library-css": "1.0.0-alpha.506",
"clsx": "1.2.1",
"eslint": "8.40.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-mdx": "2.1.0",
"eslint-plugin-react": "7.32.2",
"html-validate": "7.17.0",
"husky": "8.0.3",
"lint-staged": "13.2.2",
"lodash.get": "4.4.2",
"markdownlint-cli": "0.34.0",
"npm-check-updates": "16.10.12",
"npm-package-json-lint": "6.4.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.8",
"pure-color": "1.3.0",
"rimraf": "3.0.2",
"sass": "1.62.1",
"style-dictionary": "3.8.0",
"stylelint": "14.16.1",
"stylelint-config-prettier": "9.0.5",
"stylelint-config-standard-scss": "6.1.0"
},
"overrides": {
"react": "18.2.0"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"prebuild": "npm run clean",
"build": "lerna run build",
"clean": "rimraf dist/ documentation/build/ packages/storybook/dist && lerna run clean",
"deploy": "npm-run-all deploy:**",
"lint": "npm-run-all --continue-on-error lint:** lint-workspaces && prettier --check .",
"lint:css": "stylelint --allow-empty-input '**/*.{css,scss}'",
"lint:js": "eslint --no-error-on-unmatched-pattern '**/*.{js,jsx,ts,tsx}'",
"lint:html": "find . -type d \\( -name node_modules \\) -prune -false -o -name '*.html' -print0 | xargs -0 npx html-validate",
"lint:md": "markdownlint '**/*.md'",
"lint:package-json": "npmPkgJsonLint '**/package.json'",
"lint-fix": "npm-run-all --continue-on-error lint-fix:** prettier",
"lint-fix:css": "stylelint --fix '**/*.{css,scss}'",
"lint-fix:js": "eslint --fix '**/*.{js,jsx,ts,tsx}'",
"lint-fix:md": "markdownlint --fix '**/*.md'",
"lint-workspaces": "lerna run --no-bail lint",
"prepare": "husky install",
"prettier": "prettier --write .",
"publish": "lerna publish from-package --no-verify-access --yes",
"release": "lerna version prerelease --conventional-prerelease --no-changelog --no-private --yes",
"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": "lerna run --no-bail test",
"update-patch": "npm-check-updates --configFileName .ncurc.patch.js --deep --dep dev,prod --target patch --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-major": "npm-check-updates --configFileName .ncurc.major.js --deep --dep dev,prod --target latest --upgrade && npm install --legacy-peer-deps",
"watch:playroom": "lerna run playroom:start",
"watch:storybook": "lerna run storybook",
"watch:style-dictionary": "lerna run watch:style-dictionary"
},
"dependencies": {
"http-server": "14.1.1"
}
}