-
Notifications
You must be signed in to change notification settings - Fork 129
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.69 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.69 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "circuit-ui-web",
"description": "The web implementation of Circuit UI, SumUp's design system",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"templates/*",
"templates/nextjs/template"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sumup-oss/circuit-ui.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sumup-oss/circuit-ui/issues"
},
"publishConfig": {
"provenance": true
},
"homepage": "https://github.com/sumup-oss/circuit-ui#readme",
"scripts": {
"start": "lerna run start --stream",
"build": "lerna run build",
"test": "vitest",
"test:ci": "vitest run --coverage",
"knip": "knip",
"lint": "biome check --diagnostic-level=error && eslint . --quiet --concurrency=auto",
"lint:fix": "biome check --write --diagnostic-level=error && eslint . --quiet --concurrency=auto --fix",
"lint:ci": "biome ci --diagnostic-level=error && eslint . --quiet --concurrency=auto",
"lint:css": "stylelint '**/*.css' --quiet",
"lint:css:fix": "stylelint '**/*.css' --quiet --fix",
"dev": "npm run docs:start",
"docs": "npm run docs:start",
"docs:start": "storybook dev -p 6006",
"docs:build": "storybook build -c .storybook -o public && cp -R ./packages/icons/web ./public/icons && mkdir ./public/design-tokens && cp -R ./packages/design-tokens/*.css ./public/design-tokens && mkdir ./public/components && cp -R ./packages/circuit-ui/dist/styles.css ./public/components",
"chromatic-build": "storybook build -c .storybook -o public --test --stats-json",
"vercel-build": "npm run copy-docs && npm run build && npm run docs:build",
"skills:generate:circuit-ui": "node ./scripts/generate-skills.js",
"skills:check:circuit-ui": "npm run skills:generate:circuit-ui && git diff --exit-code -- skills/circuit-ui/references",
"check:security": "audit-ci --critical",
"copy-docs": "./scripts/copy-docs.sh",
"bootstrap": "npm run build && npm run copy-docs && cd templates/nextjs/template && npm ci",
"release": "changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.31.0",
"@emotion/eslint-plugin": "^11.12.0",
"@storybook/addon-a11y": "^10.3.5",
"@storybook/addon-docs": "^10.3.5",
"@storybook/addon-links": "^10.3.5",
"@storybook/blocks": "^8.6.14",
"@storybook/icons": "^2.0.1",
"@storybook/react-vite": "^10.3.5",
"@sumup-oss/eslint-plugin-circuit-ui": "^7.1.0",
"@sumup-oss/foundry": "^10.0.0",
"@sumup-oss/stylelint-plugin-circuit-ui": "^4.1.0",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.5",
"@vitest/eslint-plugin": "^1.6.16",
"audit-ci": "^7.1.0",
"chromatic": "^16.6.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-server-components": "^1.2.0",
"eslint-plugin-storybook": "^10.3.5",
"eslint-plugin-testing-library": "^7.16.2",
"github-slugger": "^2.0.0",
"jsdom": "^29.0.2",
"knip": "^6.6.2",
"lerna": "^9.0.7",
"pkg-pr-new": "^0.0.66",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"remark-gfm": "^4.0.1",
"storybook": "^10.3.5",
"stylelint": "^17.9.0",
"stylelint-config-css-modules": "^4.6.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-no-unsupported-browser-features": "^8.1.1",
"svgo": "^4.0.1",
"typescript": "^6.0.3",
"vite": "^7.3.2",
"vite-plugin-svgr": "^5.2.0",
"vitest": "^4.1.5",
"vitest-github-actions-reporter": "^0.11.1"
},
"overrides": {
"@types/react-dom": "^19.0.0",
"@types/react": "^19.0.0",
"nx": "22.6.3",
"eslint": "^9.0.0",
"storybook": "$storybook",
"stylus": "^0.64.0"
}
}