-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.89 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
{
"name": "dnsnf-web",
"private": true,
"description": "DNS.NF is a fast DNS lookup tool and DNS checker for DNS records, nameservers, reverse DNS, reverse IP, subdomain discovery, DNSSEC, and a public DNS API.",
"homepage": "https://dns.nf",
"repository": {
"type": "git",
"url": "https://github.com/gentpan/dnsnf.git"
},
"keywords": [
"dns",
"dns-lookup",
"dns-lookup-tool",
"dns-checker",
"dns-record-lookup",
"dns-propagation",
"nameserver-lookup",
"reverse-dns",
"reverse-ip",
"subdomain-finder",
"subdomain-discovery",
"dnssec",
"tanstack-start",
"react",
"go",
"postgresql",
"redis"
],
"type": "module",
"imports": {
"#/*": "./src/*",
"@/*": "./src/*"
},
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "vite dev --host 127.0.0.1 --port 3000",
"generate-routes": "tsr generate",
"build": "vite build",
"preview": "vite preview --host 127.0.0.1 --port 3000",
"test": "tsc --noEmit"
},
"dependencies": {
"@base-ui/react": "^1.6.0",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-query": "^5.90.12",
"@tanstack/react-router": "^1.132.0",
"@tanstack/react-router-ssr-query": "^1.132.0",
"@tanstack/react-start": "^1.132.0",
"@tanstack/router-plugin": "^1.132.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.545.0",
"nitro": "npm:nitro-nightly@latest",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18"
},
"devDependencies": {
"@tanstack/router-cli": "^1.132.0",
"@types/node": "^22.10.2",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^6.0.1",
"typescript": "^6.0.2",
"vite": "^8.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"lightningcss"
]
}
}