-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.49 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
{
"name": "create-sugarcoat-app",
"version": "0.0.6",
"description": "",
"exports": "./dist/bin.js",
"type": "module",
"bin": {
"create-sugarcoat-app": "dist/bin.js"
},
"scripts": {
"build": "esbuild --bundle src/index.ts --outfile=dist/bin.js --packages=external --format=esm --target=esnext",
"dev": "tsx src/index.ts",
"lint": "eslint ."
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.5.0",
"@hono/node-server": "^1.11.3",
"@libsql/client": "^0.6.2",
"@neondatabase/serverless": "^0.9.3",
"@planetscale/database": "^1.18.0",
"@prisma/adapter-libsql": "^5.15.0",
"@prisma/client": "^5.15.0",
"@total-typescript/tsconfig": "^1.0.4",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/gradient-string": "^1.1.6",
"@types/node": "^20.12.12",
"@vercel/postgres": "^0.8.0",
"drizzle-orm": "^0.31.2",
"esbuild": "^0.21.4",
"eslint": "9.x",
"express": "^4.19.2",
"globals": "^15.6.0",
"hono": "^4.4.6",
"lucia": "^3.2.0",
"oslo": "^1.2.0",
"postgres": "^3.4.4",
"reflect-metadata": "^0.2.2",
"tsx": "^4.11.0",
"typeorm": "^0.3.20",
"typescript-eslint": "^7.13.1"
},
"dependencies": {
"@changesets/cli": "^2.27.5",
"@clack/prompts": "^0.7.0",
"chalk": "^5.3.0",
"detect-package-manager": "^3.0.2",
"execa": "^9.1.0",
"fs-extra": "^11.2.0",
"gradient-string": "^2.0.2",
"ora": "^8.0.1"
}
}