This repository has been archived by the owner on Nov 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
57 lines (57 loc) · 1.87 KB
/
package.json
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
{
"$schema": "https://json.schemastore.org/package",
"name": "elysia-kickstart",
"module": "src/index.ts",
"type": "module",
"scripts": {
"----BUILD": "",
"build": "tailwindcss -i ./src/styles/globals.css -o ./public/globals.css",
"build:vercel": "bun run build && bun scripts/transform-paths.ts",
"----RUN": "",
"dev": "concurrently \"bun --watch src/index.ts\" \"bun run build --watch\"",
"start": "bun run build && bun src/index.ts",
"----CHECK": "",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "eslint --ignore-path .gitignore --fix . ",
"typecheck": "tsc --noEmit",
"----DATABASE": "",
"db:drop": "drizzle-kit drop",
"db:generate": "drizzle-kit generate:sqlite",
"db:push": "drizzle-kit push:sqlite",
"db:view": "drizzle-kit studio"
},
"dependencies": {
"@auth/core": "^0.14.0",
"@auth/drizzle-adapter": "^0.3.2",
"@elysiajs/html": "^0.6.5",
"@elysiajs/static": "^0.6.0",
"@elysiajs/swagger": "^0.6.2",
"@libsql/client": "^0.3.4",
"better-sqlite3": "^8.6.0",
"drizzle-orm": "^0.28.6",
"drizzle-typebox": "^0.1.1",
"elysia": "^0.6.23",
"zod": "^3.22.2"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.0",
"@tailwindcss/typography": "^0.5.10",
"@total-typescript/ts-reset": "^0.5.1",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"bun-types": "latest",
"concurrently": "^8.2.1",
"drizzle-kit": "^0.19.13",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.4",
"tailwindcss": "^3.3.3",
"tailwindcss-animate": "^1.0.7",
"ts-toolbelt": "^9.6.0",
"typed-html": "^3.0.1",
"typescript": "^5.2.2"
}
}