forked from nl-design-system/themes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 5.19 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
{
"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"
},
"workspaces": [
"./packages/*",
"./proprietary/*"
],
"devDependencies": {
"@babel/core": "7.18.9",
"@babel/preset-react": "7.18.6",
"@etchteam/storybook-addon-status": "4.2.1",
"@gemeente-denhaag/design-tokens-components": "0.2.3-alpha.289",
"@nl-design-system/component-index": "1.0.0-alpha.7",
"@open-formulieren/design-tokens": "0.4.0",
"@percy/storybook": "3.3.1",
"@storybook/addon-a11y": "6.5.9",
"@storybook/addon-controls": "6.5.9",
"@storybook/addon-docs": "6.5.9",
"@storybook/addon-viewport": "6.5.9",
"@storybook/preset-scss": "1.0.3",
"@storybook/react": "6.5.9",
"@storybook/theming": "6.5.9",
"@types/node": "17.0.45",
"@typescript-eslint/eslint-plugin": "5.30.7",
"@typescript-eslint/parser": "5.30.7",
"@utrecht/component-library-css": "1.0.0-alpha.349",
"@utrecht/components": "1.0.0-alpha.310",
"@utrecht/design-tokens": "1.0.0-alpha.342",
"@utrecht/icon": "1.0.0-alpha.237",
"@utrecht/web-component-library-stencil": "1.0.0-alpha.348",
"@whitespace/storybook-addon-html": "5.0.0",
"babel-loader": "8.2.5",
"clsx": "1.2.1",
"css-loader": "5.2.7",
"dompurify": "2.3.10",
"eslint": "8.20.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-mdx": "2.0.2",
"eslint-plugin-react": "7.30.1",
"html-react-parser": "3.0.4",
"html-validate": "7.1.2",
"husky": "8.0.1",
"lerna": "5.2.0",
"lint-staged": "13.0.3",
"lodash.get": "4.4.2",
"markdownlint-cli": "0.32.0",
"npm-check-updates": "16.0.0",
"npm-package-json-lint": "6.3.0",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"pure-color": "1.3.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"rimraf": "3.0.2",
"sass": "1.54.0",
"sass-loader": "10.3.1",
"style-loader": "2.0.0",
"stylelint": "14.9.1",
"stylelint-config-prettier": "9.0.3",
"ts-dedent": "2.2.0",
"ts-node": "10.9.1",
"webpack": "4.46.0"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"prebuild": "npm run clean && npm run write-component-pages",
"build": "npm-run-all --sequential build-workspaces build:**",
"build:storybook": "build-storybook --config-dir packages/storybook/config/ --output-dir packages/storybook/dist/",
"build-workspaces": "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",
"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",
"release": "lerna version prerelease --no-changelog --no-private",
"start": "node_modules/http-server/bin/http-server dist/",
"prestorybook": "lerna run build && npm run write-component-pages",
"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:storybook": "start-storybook --config-dir packages/storybook/config/ --no-manager-cache --port 6006",
"watch:style-dictionary": "lerna run watch:style-dictionary",
"write-component-pages": "ts-node --project ./tsconfig.commonjs.json script/generate-component-pages"
},
"dependencies": {
"@gemeente-denhaag/components-react": "0.1.1-alpha.180",
"http-server": "14.1.1"
}
}