-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
105 lines (105 loc) · 3.98 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
{
"version": "0.0.0",
"author": "Design System Team, City of Amsterdam <designsystem@amsterdam.nl>",
"description": "Reusable components, patterns and guidelines powering the City of Amsterdam’s digital services.",
"homepage": "https://designsystem.amsterdam/",
"license": "EUPL-1.2",
"name": "@amsterdam/design-system",
"keywords": [
"amsterdam",
"amsterdam-design-system",
"assets",
"css",
"design-system",
"icons",
"nl-design-system",
"react"
],
"private": true,
"engines": {
"node": "^20",
"npm": "^10",
"pnpm": "^9"
},
"workspaces": [
"./packages/*",
"./proprietary/*",
"./storybook"
],
"devDependencies": {
"@types/node": "22.9.0",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"conventional-changelog-conventionalcommits": "8.0.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-mdx": "3.1.5",
"eslint-plugin-react": "7.37.2",
"html-validate": "8.25.0",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"markdownlint-cli": "0.42.0",
"npm-check-updates": "17.1.10",
"npm-package-json-lint": "8.0.0",
"npm-run-all": "4.1.5",
"plop": "4.0.1",
"postcss": "8.4.48",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"stylelint": "16.10.0",
"stylelint-config-standard-scss": "13.1.0",
"stylelint-order": "6.0.4",
"stylelint-use-logical": "2.1.2",
"typescript": "5.6.3",
"wait-on": "8.0.1"
},
"scripts": {
"build": "pnpm -r build",
"clean": "pnpm -r clean",
"lint": "npm-run-all --continue-on-error lint:** lint-workspaces",
"lint:css": "stylelint --allow-empty-input '**/*.{css,scss}'",
"lint:js": "eslint . --ext .js,.json,.jsx,.mdx,.ts,.tsx --report-unused-disable-directives",
"lint:md": "markdownlint **/*.md --ignore node_modules",
"lint:package-json": "npmPkgJsonLint **/package.json",
"lint:package-lock": "pnpm ls --recursive",
"lint-fix": "npm-run-all --continue-on-error lint-fix:** prettier",
"lint-fix:css": "stylelint --fix '**/*.{css,scss}'",
"lint-fix:js": "eslint . --ext .js,.json,.jsx,.mdx,.ts,.tsx --fix --report-unused-disable-directives",
"lint-fix:md": "markdownlint --fix **/*.md",
"lint-workspaces": "pnpm -r --no-bail lint",
"plop": "plop",
"prepare": "husky",
"prettier": "prettier --write .",
"start": "npm-run-all --parallel watch:**",
"test": "npm run test-workspaces",
"test-update": "npm-run-all --sequential clean lint build test",
"test-workspaces": "pnpm -r --no-bail test",
"update:major": "npm-check-updates --configFileName .ncurc.major.js --deep --dep dev,prod --target latest --upgrade && pnpm install",
"update:minor": "npm-check-updates --configFileName .ncurc.minor.js --deep --dep dev,prod --target minor --upgrade && pnpm install",
"update:patch": "npm-check-updates --configFileName .ncurc.patch.js --deep --dep dev,prod --target patch --upgrade && pnpm install",
"watch:css": "npm run --workspace packages/css build:watch",
"watch:react": "npm run --workspace packages/react build:watch",
"watch:storybook": "npm run --workspace storybook start",
"watch:tokens": "npm run --workspace proprietary/tokens watch"
},
"pnpm": {
"overrides": {
"tar@<6.2.1": ">=6.2.1",
"tough-cookie@<4.1.3": ">=4.1.3",
"braces@<3.0.3": ">=3.0.3",
"ws@>=8.0.0 <8.17.1": ">=8.17.1",
"semver@<5.7.2": ">=5.7.2",
"micromatch@<4.0.8": ">=4.0.8",
"body-parser@<1.20.3": ">=1.20.3",
"send@<0.19.0": ">=0.19.0",
"serve-static@<1.16.0": ">=1.16.0",
"express@<4.20.0": ">=4.20.0",
"path-to-regexp@<0.1.10": ">=0.1.10",
"cookie@<0.7.0": ">=0.7.0"
}
},
"packageManager": "pnpm@9.12.2+sha512.22721b3a11f81661ae1ec68ce1a7b879425a1ca5b991c975b074ac220b187ce56c708fe5db69f4c962c989452eee76c82877f4ee80f474cebd61ee13461b6228"
}