-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.25 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.25 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
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
{
"name": "daily-dev-tools",
"version": "1.0.0",
"description": "Fast, free, and privacy-focused developer tools.",
"private": true,
"packageManager": "pnpm@10.29.3",
"repository": {
"type": "git",
"url": "https://github.com/dailydevtools/Daily-Dev-Tools.git"
},
"keywords": [
"developer-tools",
"nextjs",
"utility",
"privacy-focused"
],
"author": "Sohan Paliyal",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"bash -c 'pnpm run type-check'"
]
},
"dependencies": {
"@giscus/react": "^3.1.0",
"@hookform/resolvers": "^5.2.2",
"@monaco-editor/react": "^4.7.0",
"@types/dagre": "^0.7.53",
"@xyflow/react": "^12.10.0",
"clsx": "^2.1.1",
"curlconverter": "^4.12.0",
"dagre": "^0.8.5",
"date-fns": "^4.1.0",
"framer-motion": "^12.29.2",
"idb": "^8.0.3",
"isomorphic-dompurify": "^2.30.0",
"js-yaml": "^4.1.1",
"json2csv": "^6.0.0-alpha.2",
"lucide-react": "^0.468.0",
"next": "16.1.3",
"next-intl": "^4.7.0",
"next-themes": "^0.4.6",
"openapi-types": "^12.1.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-hook-form": "^7.71.1",
"sharp": "^0.34.5",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"xml-js": "^1.6.11",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/babel__core": "^7.20.5",
"@types/babel__generator": "^7.27.0",
"@types/babel__template": "^7.4.4",
"@types/babel__traverse": "^7.28.0",
"@types/chrome": "^0.1.37",
"@types/filesystem": "^0.0.36",
"@types/filewriter": "^0.0.33",
"@types/har-format": "^1.2.16",
"@types/js-yaml": "^4.0.9",
"@types/json2csv": "^5.0.7",
"@types/node": "^20",
"@types/prop-types": "^15.7.15",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.1",
"@types/xml-js": "^0.9.0",
"autoprefixer": "^10.4.24",
"eslint": "^9",
"eslint-config-next": "16.1.3",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.19",
"typescript": "^5"
}
}