-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.83 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.83 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
{
"name": "docs",
"description": "Source code of the SumUp Developer portal",
"keywords": [
"sumup",
"documentation",
"developer portal"
],
"homepage": "https://developer.sumup.com",
"bugs": {
"url": "https://github.com/sumup/sumup-developer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sumup/sumup-developer.git"
},
"license": "Apache-2.0",
"author": "SumUp <support@sumup.com> (https://sumup.com/)",
"type": "module",
"version": "0.0.1",
"engines": {
"node": "22.x",
"npm": "10.x"
},
"packageManager": "npm@10.9.4",
"scripts": {
"info": "astro info",
"dev": "astro dev",
"start": "astro dev",
"prebuild": "astro sync --force",
"build": "astro build",
"precheck": "astro sync",
"check": "astro check",
"prelint": "astro sync",
"lint": "npm run lint:src",
"lint:src": "npx eslint",
"lint:markdown": "rumdl check .",
"format": "npm run format:src && npm run format:astro && npm run format:markdown",
"format:astro": "npx prettier --write \"**/*.astro\"",
"format:markdown": "rumdl fmt .",
"format:src": "npx prettier --write \"**/*.{js,jsx,ts,tsx,mjs,css,json}\"",
"linkcheck": "CHECK_LINKS=true astro build",
"test": "vitest run"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@astrojs/cloudflare": "^12.6.12",
"@astrojs/language-server": "^2.16.3",
"@astrojs/react": "^4.4.2",
"@astrojs/rss": "^4.0.15",
"@astrojs/sitemap": "^3.7.0",
"@astrojs/starlight": "^0.37.6",
"@astrojs/starlight-docsearch": "^0.6.1",
"@astrojs/ts-plugin": "^1.10.6",
"@expressive-code/plugin-collapsible-sections": "^0.41.7",
"@expressive-code/plugin-line-numbers": "0.41.7",
"@sindresorhus/slugify": "^3.0.0",
"@sumup-oss/circuit-ui": "^10.14.7",
"@sumup-oss/design-tokens": "^9.0.0",
"@sumup-oss/icons": "^5.22.0",
"@types/node": "^25.3.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/parser": "^8.56.1",
"astro": "^5.18.0",
"astro-mermaid": "1.3.1",
"change-case-all": "^2.1.0",
"eslint": "^9.39.2",
"eslint-plugin-astro": "^1.6.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"expressive-code": "^0.41.7",
"jsdom": "^28.1.0",
"marked": "^17.0.3",
"openapi-types": "^12.1.3",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"react": "^19.2.4",
"react-content-loader": "^7.1.2",
"react-dom": "^19.2.4",
"react-final-form": "^7.0.0",
"rumdl": "0.1.36",
"sass": "^1.97.3",
"starlight-image-zoom": "^0.13.0",
"starlight-links-validator": "^0.19.2",
"starlight-llms-txt": "0.7.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "8.56.1",
"vitest": "4.0.18",
"wrangler": "4.69.0"
}
}