-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
104 lines (104 loc) · 3.73 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
{
"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": "^10"
},
"packageManager": "pnpm@10.4.1+sha512.c753b6c3ad7afa13af388fa6d808035a008e30ea9993f58c6663e2bc5ff21679aa834db094987129aa4d488b86df57f7b634981b2f827cdcacc698cc0cfb88af",
"workspaces": [
"./packages/*",
"./proprietary/*",
"./storybook"
],
"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 .",
"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 . --fix",
"lint-workspaces": "pnpm -r --no-bail lint",
"plop": "plop",
"postinstall": "pnpm --filter=!storybook -r build",
"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"
},
"devDependencies": {
"@eslint/compat": "1.2.7",
"@eslint/eslintrc": "3.3.0",
"@eslint/js": "9.22.0",
"@eslint/json": "0.10.0",
"@eslint/markdown": "6.3.0",
"@types/node": "22.13.10",
"@typescript-eslint/eslint-plugin": "8.26.0",
"@typescript-eslint/parser": "8.26.0",
"conventional-changelog-conventionalcommits": "8.0.0",
"eslint": "9.22.0",
"eslint-config-prettier": "10.1.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.11.0",
"eslint-plugin-mdx": "3.2.0",
"eslint-plugin-perfectionist": "4.10.1",
"eslint-plugin-react": "7.37.4",
"globals": "16.0.0",
"html-validate": "9.5.0",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"npm-check-updates": "17.1.15",
"npm-package-json-lint": "8.0.0",
"npm-run-all": "4.1.5",
"plop": "4.0.1",
"postcss": "8.5.3",
"prettier": "3.5.3",
"rimraf": "6.0.1",
"stylelint": "16.15.0",
"stylelint-config-standard-scss": "14.0.0",
"stylelint-order": "6.0.4",
"stylelint-use-logical": "2.1.2",
"stylelint-value-no-unknown-custom-properties": "6.0.1",
"typescript": "5.8.2",
"typescript-eslint": "8.26.0",
"wait-on": "8.0.2"
},
"pnpm": {
"ignoredBuiltDependencies": [
"@bundled-es-modules/glob",
"@parcel/watcher",
"esbuild",
"sharp",
"style-dictionary"
]
}
}