-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 3.04 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 3.04 KB
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
{
"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": "^24",
"pnpm": "^11"
},
"packageManager": "pnpm@11.1.3",
"scripts": {
"build": "pnpm -r run build",
"clean:dist": "pnpm -r run clean:dist",
"lint": "pnpm run --aggregate-output '/^lint:.+$/' && pnpm -r --no-bail run lint",
"lint:css": "stylelint --allow-empty-input --report-needless-disables '**/*.{css,scss}'",
"lint:js": "eslint .",
"lint:package-json": "npmPkgJsonLint **/package.json",
"lint:package-lock": "pnpm ls --recursive",
"lint-fix": "pnpm run --aggregate-output '/^lint-fix:.+$/' && pnpm run prettier",
"lint-fix:css": "stylelint --fix '**/*.{css,scss}'",
"lint-fix:js": "eslint . --fix",
"plop": "plop",
"prepare": "husky",
"prettier": "prettier --write .",
"start": "pnpm run '/^watch:.+$/'",
"test": "pnpm -r --no-bail run test",
"test-update": "pnpm run clean:dist && pnpm run build && pnpm run lint && pnpm run test",
"update:major": "npm-check-updates --upgrade --workspaces --cooldown 1 && pnpm install",
"update:minor": "npm-check-updates --target minor --upgrade --workspaces --cooldown 1 && pnpm install",
"update:patch": "npm-check-updates --target patch --upgrade --workspaces --cooldown 1 && pnpm install",
"watch:css": "pnpm --filter @amsterdam/design-system-css run build:watch",
"watch:react": "pnpm --filter @amsterdam/design-system-react run build:watch",
"watch:storybook": "pnpm --filter @amsterdam/storybook run start",
"watch:tokens": "pnpm --filter @amsterdam/design-system-tokens run build:watch"
},
"devDependencies": {
"@eslint/js": "9.39.4",
"@eslint/json": "2.0.0",
"@eslint/markdown": "8.0.2",
"@typescript-eslint/eslint-plugin": "8.60.1",
"@typescript-eslint/parser": "8.60.1",
"@vitest/eslint-plugin": "1.6.19",
"baseline-browser-mapping": "2.10.33",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "4.4.5",
"eslint-plugin-baseline-js": "0.6.2",
"eslint-plugin-import-x": "4.16.2",
"eslint-plugin-perfectionist": "5.9.0",
"globals": "17.6.0",
"husky": "9.1.7",
"lint-staged": "17.0.7",
"npm-check-updates": "22.2.2",
"npm-package-json-lint": "10.4.0",
"plop": "4.0.5",
"prettier": "3.8.3",
"rimraf": "6.1.3",
"stylelint": "17.12.0",
"stylelint-config-standard-scss": "17.0.0",
"stylelint-order": "8.1.1",
"stylelint-plugin-use-baseline": "1.4.2",
"stylelint-use-logical": "2.1.3",
"stylelint-value-no-unknown-custom-properties": "6.1.1",
"typescript": "5.9.3"
}
}