-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.73 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.73 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
{
"name": "cryptosharia-api",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && tsc --noEmit",
"check:watch": "svelte-kit sync && tsc --noEmit --watch",
"test": "bash scripts/test-e2e.sh",
"lint": "eslint . && prettier --check .",
"format": "prettier --write .",
"db:push": "drizzle-kit push",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"gen:key": "node -e \"console.log(require('crypto').randomBytes(32).toString('hex'))\"",
"gen:api-types": "openapi-typescript http://localhost:5173/openapi.json -o src/lib/api-types.ts",
"gen:api-types:preview": "openapi-typescript https://preview.api.cryptosharia.id/openapi.json -o src/lib/api-types.ts"
},
"devDependencies": {
"@eslint/compat": "^2.0.1",
"@eslint/js": "^9.39.2",
"@sveltejs/adapter-vercel": "^6.3.1",
"@sveltejs/kit": "^2.50.0",
"@types/node": "^25",
"drizzle-kit": "^0.31.8",
"drizzle-orm": "^0.45.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.0.0",
"openapi-typescript": "^7.10.1",
"prettier": "^3.8.0",
"svelte": "^5.46.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.0",
"vite": "^7.3.1",
"vitest": "^4.0.17"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^8.4.0",
"@scalar/sveltekit": "^0.1.38",
"@vercel/blob": "^2.3.1",
"@vercel/functions": "^3.4.1",
"argon2": "^0.44.0",
"drizzle-zod": "^0.8.3",
"image-size": "^2.0.2",
"jose": "^6.1.3",
"lru-cache": "^11.2.6",
"openapi-fetch": "^0.15.0",
"postgres": "^3.4.8",
"zod": "^4.3.5"
}
}