-
Notifications
You must be signed in to change notification settings - Fork 156
/
package.json
66 lines (66 loc) · 2.18 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
{
"description": "Saleor e-commerce documentation.",
"repository": {
"type": "git",
"url": "https://github.com/saleor/saleor-docs.git"
},
"license": "BSD-3-Clause",
"engines": {
"node": ">=20 <=22",
"npm": ">=10"
},
"scripts": {
"start": "docusaurus start",
"dev": "npm run start",
"build": "docusaurus build",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"version": "docusaurus version",
"prepare": "husky",
"swizzle": "docusaurus swizzle",
"generate-api-reference": "docusaurus graphql-to-doc --force --pretty --root './.tmp'",
"highlight-api-reference": "node ./scripts/highlight.js",
"inject-examples": "node ./scripts/inject-examples.js",
"move-generated-reference": "rimraf docs/api-reference && mv .tmp/* docs/",
"lint": "eslint .",
"prettier": "prettier --write .",
"update-api-reference": "npm run generate-api-reference && npm run highlight-api-reference && npm run move-generated-reference",
"check-spelling": "cspell '**/*.{jsx,js,md,mdx}'"
},
"devDependencies": {
"cspell": "8.14.4",
"@docusaurus/core": "0.0.0-6101",
"@docusaurus/preset-classic": "0.0.0-6101",
"@docusaurus/theme-classic": "0.0.0-6101",
"@docusaurus/theme-mermaid": "0.0.0-6101",
"@docusaurus/types": "0.0.0-6101",
"@docusaurus/faster": "0.0.0-6101",
"@graphql-markdown/diff": "^1.1.8",
"@graphql-markdown/docusaurus": "^1.26.2",
"@graphql-tools/graphql-file-loader": "^8.0.1",
"@types/react": "^18.3.11",
"dotenv": "^16.4.5",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-react": "^7.37.1",
"fast-glob": "^3.3.2",
"graphql": "^16.9.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"markprompt": "^0.1.7",
"prettier": "^3.3.3",
"react-markdown": "^9.0.1",
"remark-gfm": "^4.0.0",
"remark-lint-heading-capitalization": "^1.2.0",
"rimraf": "^6.0.1",
"uuid": "^10.0.0"
},
"dependencies": {
"eslint-plugin-simple-import-sort": "^12.1.1",
"lucide-react": "^0.451.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-transition-group": "^4.4.5"
}
}