forked from inkonchain/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.7 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
{
"name": "inkchain-docs",
"volta": {
"node": "20.11.0",
"pnpm": "9.2.0"
},
"packageManager": "[email protected]",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "pnpm run lint:js && pnpm run lint:mdx && pnpm run format:js:check && pnpm run spellcheck:lint",
"lint:fix": "pnpm run lint:js:fix && pnpm run lint:mdx:fix && pnpm run format:js && pnpm run spellcheck:fix",
"lint:js": "eslint ./src theme.config.tsx --ext js,jsx,ts,tsx",
"lint:js:fix": "eslint ./src theme.config.tsx --fix --ext js,jsx,ts,tsx",
"format:js": "prettier --write \"**/*.{ts,tsx,css,scss}\"",
"format:js:check": "prettier --check \"**/*.{ts,tsx,css,scss}\"",
"lint:mdx": "remark -e mdx -u mdx ./src",
"lint:mdx:fix": "remark -e mdx -u mdx ./src --output",
"spellcheck:lint": "cspell lint \"**/*.mdx\"",
"spellcheck:fix": "cspell --words-only --unique \"**/*.mdx\" | sort --ignore-case | uniq"
},
"remarkConfig": {
"settings": {
"emphasis": "*",
"strong": "*"
},
"plugins": [
"remark-preset-lint-consistent",
"remark-preset-lint-recommended",
"remark-gfm",
"remark-lint-frontmatter-schema",
"remark-lint-heading-style",
"remark-lint-list-item-indent",
"remark-lint-table-cell-padding",
"remark-lint-table-pipe-alignment",
"remark-lint-table-pipes",
"remark-lint-unordered-list-marker-style"
]
},
"dependencies": {
"clsx": "2.1.1",
"next": "15.0.3",
"next-themes": "0.4.3",
"nextra": "2.13.4",
"nextra-theme-docs": "2.13.4",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@types/node": "22.10.1",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"autoprefixer": "10.4.20",
"cspell": "8.16.1",
"eslint": "8.57.1",
"eslint-config-next": "15.0.3",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-mdx": "3.1.5",
"eslint-plugin-simple-import-sort": "12.1.1",
"mdx": "0.3.1",
"postcss": "8.4.49",
"prettier": "3.4.1",
"remark": "15.0.1",
"remark-cli": "12.0.1",
"remark-code-import": "1.2.0",
"remark-frontmatter": "5.0.0",
"remark-gfm": "4.0.0",
"remark-lint-frontmatter-schema": "3.15.4",
"remark-lint-heading-style": "4.0.0",
"remark-lint-list-item-indent": "4.0.0",
"remark-lint-table-cell-padding": "5.0.0",
"remark-lint-table-pipe-alignment": "4.0.0",
"remark-lint-table-pipes": "5.0.0",
"remark-lint-unordered-list-marker-style": "4.0.0",
"remark-preset-lint-consistent": "6.0.0",
"remark-preset-lint-recommended": "7.0.0",
"tailwindcss": "3.4.15",
"typescript": "5.7.2"
}
}