8000 feature: add initial admin · code4mk/sveltekit-admin@1d24535 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1d24535

Browse files
committed
feature: add initial admin
0 parents  commit 1d24535

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+5099
-0
lines changed

.gitignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
node_modules
2+
3+
# Output
4+
.output
5+
.vercel
6+
.netlify
7+
.wrangler
8+
/.svelte-kit
9+
/build
10+
11+
# OS
12+
.DS_Store
13+
Thumbs.db
14+
15+
# Env
16+
.env
17+
.env.*
18+
!.env.example
19+
!.env.test
20+
21+
# Vite
22+
vite.config.js.timestamp-*
23+
vite.config.ts.timestamp-*

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
engine-strict=true

README.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# sv
2+
3+
Everything you need to build a Svelte project, powered by [`sv`](https://github.com/sveltejs/cli).
4+
5+
## Creating a project
6+
7+
If you're seeing this, you've probably already done this step. Congrats!
8+
9+
```bash
10+
# create a new project in the current directory
11+
npx sv create
12+
13+
# create a new project in my-app
14+
npx sv create my-app
15+
```
16+
17+
## Developing
18+
19+
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
20+
21+
```bash
22+
npm run dev
23+
24+
# or start the server and open the app in a new browser tab
25+
npm run dev -- --open
26+
```
27+
28+
## Building
29+
30+
To create a production version of your app:
31+
32+
```bash
33+
npm run build
34+
```
35+
36+
You can preview the production build with `npm run preview`.
37+
38+
> To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment.

package.json

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{
2+
"name": "my-app",
3+
"private": true,
4+
"version": "0.0.1",
5+
"type": "module",
6+
"scripts": {
7+
"dev": "vite dev",
8+
"build": "vite build",
9+
"preview": "vite preview",
10+
"prepare": "svelte-kit sync || echo ''",
11+
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
12+
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
13+
},
14+
"devDependencies": {
15+
"@sveltejs/adapter-auto": "^4.0.0",
16+
"@sveltejs/kit": "^2.16.0",
17+
"@sveltejs/vite-plugin-svelte": "^5.0.0",
18+
"svelte": "^5.0.0",
19+
"svelte-check": "^4.0.0",
20+
"typescript": "^5.0.0",
21+
"vite": "^6.2.5"
22+
},
23+
"pnpm": {
24+
"onlyBuiltDependencies": [
25+
"esbuild"
26+
]
27+
},
28+
"dependencies": {
29+
"@lucide/svelte": "^0.488.0",
30+
"@sveltejs/adapter-vercel": "^5.7.0",
31+
"@tailwindcss/forms": "^0.5.10",
32+
"@tailwindcss/vite": "^4.1.4",
33+
"axios": "^1.8.4",
34+
"svelte-french-toast": "^1.2.0",
35+
"svelte-headlessui": "^0.0.46",
36+
"svelte-select": "^5.8.3",
37+
"svelte-transition": "^0.0.17",
38+
"sveltekit-superforms": "^2.24.1",
39+
"tailwindcss": "^4.1.4",
40+
"universal-cookie": "^8.0.1",
41+
"yup": "^1.6.1",
42+
"zod": "^3.24.2"
43+
}
44+
}

0 commit comments

Comments
 (0)
0