-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.49 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.49 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
{
"name": "ionic-docs",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"prebuild": "npm run generate-markdown && scripts/i18n.sh && if [ -n \"$CROWDIN_PERSONAL_TOKEN\" ]; then npm run crowdin:sync; fi",
"build": "npm run build:${VERCEL_ENV:-preview}",
"build:preview": "docusaurus build --locale en",
"build:production": "docusaurus build",
"clear": "docusaurus clear",
"crowdin:sync": "docusaurus write-translations && crowdin upload && crowdin download",
"deploy": "docusaurus deploy",
"docusaurus": "docusaurus",
"generate-markdown": "node scripts/native.mjs && node scripts/cli.mjs && node scripts/release-notes.mjs",
"lint": "npm run prettier -- --write",
"serve": "docusaurus serve",
"playground:new": "hygen playground new",
"prestart": "npm run generate-markdown",
"prettier": "prettier \"./**/*.{html,ts,tsx,js,jsx,md,mdx}\" --cache",
"start": "docusaurus start",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"swizzle": "docusaurus swizzle",
"spellcheck": "cspell --no-progress --gitignore \"**/*.{md,mdx}\""
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@crowdin/cli": "^5.0.1",
"@docusaurus/core": "^3.10.2",
"@docusaurus/faster": "^3.10.2",
"@docusaurus/preset-classic": "^3.10.2",
"@floating-ui/react": "^0.27.20",
"@ionic-internal/ionic-ds": "^8.0.0",
"@mdx-js/react": "^3.1.1",
"@prismicio/client": "^7.22.0",
"@prismicio/react": "^3.4.1",
"@stackblitz/sdk": "^1.11.1",
"clsx": "^2.1.1",
"docusaurus-plugin-copy-page-button": "^0.8.4",
"docusaurus-plugin-module-alias": "^0.0.2",
"docusaurus-plugin-sass": "^0.2.6",
"fs-extra": "^11.4.0",
"modern-normalize": "^3.0.1",
"prism-react-renderer": "^2.4.1",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"remark-html": "^16.0.1",
"remark-parse": "^11.0.0",
"sass": "^1.102.0",
"semver": "^7.8.5"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "^3.10.2",
"@docusaurus/tsconfig": "^3.10.2",
"@docusaurus/types": "^3.10.2",
"@ionic/prettier-config": "^4.0.0",
"@types/react": "^19.2.18",
"cspell": "^10.0.1",
"hygen": "^6.2.11",
"prettier": "^3.9.6",
"typescript": "^5.9.3",
"vitest": "^4.1.7"
}
}