-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.57 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
{
"name": "draftail.org",
"private": true,
"version": "0.1.0",
"description": "The draftail.org website",
"author": "Thibaud Colas",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/thibaudcolas/draftail.org.git"
},
"bugs": {
"url": "https://github.com/thibaudcolas/draftail.org/issues"
},
"homepage": "https://www.draftail.org/",
"browserslist": [
"> 1%",
"not IE 11",
"Firefox ESR",
"not OperaMini all"
],
"devEngines": {
"packageManager": {
"name": "npm"
}
},
"dependencies": {
"@docusaurus/core": "3.10.2",
"@docusaurus/preset-classic": "3.10.2",
"@mdx-js/react": "3.1.1",
"prism-react-renderer": "2.4.1",
"react": "19.3.0",
"react-dom": "19.3.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.6",
"@commitlint/cli": "21.2.3",
"@commitlint/config-conventional": "21.2.3",
"@docusaurus/module-type-aliases": "^3.9.2",
"@docusaurus/tsconfig": "3.10.2",
"@docusaurus/types": "3.10.2",
"docusaurus-plugin-llms": "^0.2.2",
"prettier": "3.9.8",
"typescript": "5.9.3"
},
"scripts": {
"start": "docusaurus start",
"build": "docusaurus build",
"version": "docusaurus-version",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"serve": "docusaurus serve",
"docusaurus": "docusaurus",
"lint": "biome check && prettier --check '**/*.{md,yaml,yml,html}' && tsc --noEmit",
"format": "biome format --write && prettier --write '**/*.{md,yaml,yml,html}'",
"prepare": "./.githooks/deploy.sh"
}
}