-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 937 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 937 Bytes
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
{
"name": "self-hosted-app-starter",
"version": "0.2.0",
"description": "A starter for the self-hosted app, help you to build your next full-stack project.",
"scripts": {
"dev:be": "air -c backend/scripts/.air.toml",
"dev:fe": "cd frontend && pnpm i && pnpm dev",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:deploy": "sh ./deploy-docs.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xiaoluoboding/self-hosted-starter.git"
},
"author": "xiaoluoboding",
"license": "MIT",
"keywords": [
"self-hosted",
"starter",
"go",
"sqlite",
"vue3",
"tailwindcss",
"vite",
"vitepress"
],
"bugs": {
"url": "https://github.com/xiaoluoboding/self-hosted-starter/issues"
},
"homepage": "https://github.com/xiaoluoboding/self-hosted-starter#readme",
"devDependencies": {
"vitepress": "1.0.0-alpha.4"
}
}