-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.47 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
{
"name": "next-product-docs-example",
"version": "2.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/zentered/next-product-docs-example.git"
},
"author": "Zentered (https://zentered.co)",
"contributors": [
"Patrick Heneise (https://github.com/PatrickHeneise)",
"Moritz Sattler (https://github.com/MoSattler)"
],
"type": "module",
"scripts": {
"build": "next build",
"dev": "next dev",
"prepare": "husky install",
"start": "next start"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,json,jsx,md,mdx}": [
"prettier --write"
],
"*.{js,jsx,md,mdx}": [
"eslint --cache --fix"
]
},
"dependencies": {
"@zentered/next-product-docs": "^2.0.6",
"esbuild": "^0.17.12",
"next": "13.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scroll": "^1.8.9"
},
"devDependencies": {
"@commitlint/cli": "^17.5.0",
"@commitlint/config-conventional": "^17.4.4",
"@unocss/preset-attributify": "^0.50.6",
"@unocss/reset": "^0.50.6",
"@unocss/webpack": "^0.50.6",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-mdx": "^2.0.5",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"prettier": "^2.8.6",
"unocss": "^0.50.6"
},
"engines": {
"node": "^16||^18"
}
}