-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.61 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.61 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
{
"private": true,
"name": "docs",
"version": "6.1.0",
"repository": "https://github.com/vygoami/wiki",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"serve": "http-server -p 3001 ./out",
"prepare": "husky",
"check": "bun prettier --check \"**/*\" && bun markdownlint \"**/*.{md,mdx}\" -p .gitignore",
"format": "bun prettier --write \"**/*\" && bun markdownlint \"**/*.{md,mdx}\" --fix -p .gitignore"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"**/*.{md,mdx}": "markdownlint --fix -p .gitignore"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-brands-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@svgr/webpack": "8.1.0",
"@types/json-schema": "^7.0.15",
"@vercel/analytics": "^1.3.1",
"@vercel/speed-insights": "^1.0.11",
"autoprefixer": "10.4.17",
"clsx": "^2.1.1",
"framer-motion": "^11.1.7",
"lucide-react": "^0.378.0",
"markdownlint-cli": "^0.40.0",
"next": "14.2.35",
"nextra": "2.13.3",
"nextra-theme-docs": "2.13.3",
"postcss": "8.4.35",
"react-fast-marquee": "^1.6.4",
"tailwind-merge": "^2.3.0",
"tailwindcss": "3.4.1",
"use-scramble": "^2.2.15"
},
"optionalDependencies": {
"@napi-rs/simple-git-linux-x64-gnu": "0.1.9"
},
"devDependencies": {
"@types/node": "20.12.8",
"eslint": "^9.4.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"typescript": "5.4.5"
}
}