-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
38 lines (38 loc) · 991 Bytes
/
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
{
"name": "artus-spec",
"scripts": {
"dev": "next",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"prepare": "husky install",
"prettier": "pnpm exec prettier . --write",
"lint:md": "markdownlint -c .markdownlint.json pages/**/*.{md,mdx}"
},
"devDependencies": {
"@types/react": "^18.2",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"markdownlint": "^0.33.0",
"markdownlint-cli": "^0.39.0",
"prettier": "3.1.0",
"sharp": "^0.33.2"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"docs/**/*.{md,mdx}": "markdownlint -c .markdownlint.json"
},
"dependencies": {
"autoprefixer": "^10.4.15",
"medium-zoom": "^1.1.0",
"next": "^14.1.0",
"next-sitemap": "^4.2.3",
"nextra": "^2.13.3",
"nextra-theme-docs": "^2.13.3",
"postcss": "^8.4.31",
"rc-table": "^7.45.5",
"react": "^18.2",
"react-dom": "^18.2",
"tailwindcss": "^3.3.3"
}
}