This repository has been archived by the owner on Dec 28, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.34 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "docs-goodbyedpi-ui",
"version": "1.0.0",
"private": true,
"type": "module",
"author": {
"name": "CodeIlluminators Collective",
"url": "https://github.com/CodeIlluminators"
},
"authors": [
"Storik4pro <[email protected]>",
"𝕷𝖚𝖒𝖊𝖓 𝕻𝖊𝖆𝖗𝖘𝖔𝖓 <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/CodeIlluminators/Docs.GoodbyeDPI.UI.git"
},
"bugs": {
"url": "https://github.com/CodeIlluminators/Docs.GoodbyeDPI.UI/issues"
},
"homepage": "https://github.com/CodeIlluminators/Docs.GoodbyeDPI.UI/readme",
"scripts": {
"commit": "cz",
"precommit": "run-p clean:write",
"prepare": "husky .husky",
"dev": "next dev -H 0.0.0.0 -p 3001",
"start:local": "next start -H 0.0.0.0 -p 3000",
"start": "next start",
"prebuild": "pnpm clean:write",
"build": "next build",
"lint:check": "mkdir -p logs && eslint . --no-fix --output-file logs/eslint-check.log",
"lint:fix": "eslint . --fix",
"lint": "next lint",
"format:check": "prettier . --check",
"format:write": "prettier . --write",
"clean:check": "run-p sort-imports:list format:check lint:check",
"clean:write": "run-p lint:fix sort-imports:write format:write",
"sort-imports:list": "npx import-sort --list-different \"**/*.{tsx,ts,js,jsx}\"",
"sort-imports:write": "npx import-sort --write \"**/*.{tsx,ts,js,jsx}\""
},
"engineStrict": true,
"engines": {
"node": ">= 20"
},
"husky": {
"hooks": {
"post-commit": "sh .husky/post-commit.sh"
}
},
"packageManager": "[email protected]",
"dependencies": {
"@next/mdx": "^15.0.2",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-collapsible": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-scroll-area": "^1.2.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@types/node": "^20.17.5",
"@vercel/analytics": "^1.3.2",
"@vercel/speed-insights": "^1.0.14",
"class-transformer": "^0.5.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"geist": "^1.3.1",
"gray-matter": "^4.0.3",
"lucide-react": "^0.435.0",
"next": "^14.2.16",
"next-mdx-remote": "^5.0.0",
"next-themes": "^0.3.0",
"node-cache": "^5.1.2",
"nprogress": "^0.2.0",
"phin": "^3.7.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-code-titles": "^1.2.0",
"rehype-prism-plus": "^2.0.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.0",
"rxjs": "^7.8.1",
"sharp": "^0.33.5",
"swr": "^2.2.5",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.14",
"@types/node": "^20",
"@types/nprogress": "^0.2.3",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.20",
"babylon": "^6.18.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8",
"eslint-config-next": "^14.2.6",
"husky": "^9.1.6",
"import-sort": "^6.0.0",
"import-sort-cli": "^6.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8",
"postcss-import": "^16.1.0",
"prettier": "^3.3.3",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"tailwindcss": "^3.4.10",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
}
}