-
Notifications
You must be signed in to change notification settings - Fork 128
/
package.json
102 lines (102 loc) · 3.56 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
{
"name": "circuit-ui-web",
"description": "The web implementation of Circuit UI, SumUp's design system",
"private": true,
"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",
"lint": "biome check --diagnostic-level=error && foundry run eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "biome check --write --diagnostic-level=error && foundry run eslint . --ext .js,.jsx,.ts,.tsx --fix",
"lint:ci": "biome ci && foundry run eslint . --ext .js,.jsx,.ts,.tsx --quiet ",
"lint:css": "foundry run stylelint '**/*.css'",
"lint:css:fix": "foundry run stylelint '**/*.css' --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 --stats-json && cp -R ./packages/icons/web ./public/icons",
"vercel-build": "npm run copy-docs && npm run build && npm run docs:build",
"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": {
"@biomejs/biome": "1.9.4",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.10",
"@emotion/eslint-plugin": "^11.12.0",
"@storybook/addon-a11y": "^8.4.5",
"@storybook/addon-actions": "^8.4.5",
"@storybook/addon-controls": "^8.4.5",
"@storybook/addon-docs": "^8.4.5",
"@storybook/addon-interactions": "^8.4.5",
"@storybook/addon-links": "^8.4.5",
"@storybook/addon-measure": "^8.4.5",
"@storybook/addon-outline": "^8.4.5",
"@storybook/addon-storysource": "^8.4.5",
"@storybook/addon-toolbars": "^8.4.5",
"@storybook/addon-viewport": "^8.4.5",
"@storybook/icons": "^1.2.12",
"@storybook/manager-api": "^8.4.5",
"@storybook/preview-api": "^8.4.5",
"@storybook/react": "^8.4.5",
"@storybook/react-vite": "^8.4.5",
"@storybook/source-loader": "^8.4.5",
"@storybook/test": "^8.4.5",
"@storybook/theming": "^8.4.5",
"@sumup-oss/eslint-plugin-circuit-ui": "^5.1.1",
"@sumup-oss/foundry": "^8.4.1",
"@sumup-oss/stylelint-plugin-circuit-ui": "^3.0.0",
"@types/node": "^22.10.0",
"@vitest/coverage-v8": "^2.1.5",
"audit-ci": "^7.1.0",
"chromatic": "^11.19.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-server-components": "^1.2.0",
"eslint-plugin-storybook": "^0.11.1",
"eslint-plugin-testing-library": "^6.4.0",
"github-slugger": "^2.0.0",
"jsdom": "^24.0.0",
"lerna": "^8.1.9",
"prettier-plugin-astro": "^0.14.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"remark-gfm": "^4.0.0",
"storybook": "^8.4.5",
"stylelint": "^16.10.0",
"stylelint-config-css-modules": "^4.4.0",
"stylelint-config-recess-order": "^5.1.1",
"stylelint-config-standard": "^36.0.1",
"stylelint-no-unsupported-browser-features": "^8.0.2",
"stylelint-prettier": "^5.0.2",
"svgo": "^3.3.2",
"typescript": "^5.7.2",
"vite": "^5.4.11",
"vitest": "^2.1.5",
"vitest-github-actions-reporter": "^0.11.1"
},
"overrides": {
"caniuse-lite": "1.0.30001653"
}
}