-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.21 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.21 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
{
"name": "sanchezdns",
"type": "module",
"version": "1.1.3",
"private": true,
"packageManager": "bun@1.3.0",
"description": "🗄️ Web application to manage authoritative dns servers using PowerDNS",
"author": {
"name": "Rafael Curi",
"email": "rafael@curi.dev.br",
"url": "https://curi.dev.br"
},
"license": "MIT",
"funding": "https://github.com/sponsors/rafinhacuri",
"homepage": "https://sanchezdns.curi.dev.br",
"repository": {
"type": "git",
"url": "git+https://github.com/rafaelcuri/sanchezdns.git"
},
"bugs": "https://github.com/rafaelcuri/sanchezdns/issues",
"keywords": ["powerdns", "dns", "admin", "vue", "nuxt", "typescript", "go", "golang"],
"scripts": {
"build": "nuxt build",
"app:dev": "nuxt dev",
"app:build": "nuxt build",
"api:dev": "cd api && ~/go/bin/air",
"dev": "concurrently -n APP,API -c green,blue \"bun app:dev\" \"bun api:dev\"",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"typecheck": "nuxt typecheck",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"prerelease": "bun lint && bun typecheck",
"docker:build": "docker build --platform=linux/amd64 -t mizle/sanchezdns:latest -t mizle/sanchezdns:$(node -p \"require('./package.json').version\") .",
"docker:push": "docker push mizle/sanchezdns:latest && docker push mizle/sanchezdns:$(node -p \"require('./package.json').version\")",
"release": "bun prerelease && bumpp && bun docker:build && bun docker:push"
},
"dependencies": {
"@iconify-json/heroicons": "^1.2.3",
"@iconify-json/lucide": "^1.2.77",
"@iconify-json/simple-icons": "^1.2.61",
"@nuxt/image": "^2.0.0",
"@nuxt/ui": "^4.2.1",
"@nuxtjs/seo": "^3.2.2",
"@vueuse/nuxt": "^14.1.0",
"nuxt": "^4.2.1",
"nuxt-security": "^2.5.0",
"vue": "^3.5.25",
"vue-router": "^4.5.1",
"zod": "^4.1.13"
},
"devDependencies": {
"@dethdkn/eslint-config": "^4.0.3",
"bumpp": "^10.3.2",
"eslint": "^9.39.1",
"vitepress": "^1.6.4",
"vue-tsc": "^3.1.5"
},
"trustedDependencies": [
"@parcel/watcher",
"unrs-resolver"
]
}