-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 971 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 971 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
36
37
{
"name": "contacts",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"gen": "drizzle-kit generate",
"build": "tsc",
"mig": "drizzle-kit migrate && node ./dist/db/run.js",
"phone-book:node": "node ./dist/index.js",
"phone-book:bun": "bun ./dist/index.js",
"init-phone-book": "tsc && drizzle-kit generate && drizzle-kit migrate && node ./dist/db/run.js"
},
"keywords": [],
"author": "Soumabha Saha",
"license": "ISC",
"type": "module",
"dependencies": {
"@libsql/client": "^0.17.4",
"chalk": "^5.6.2",
"drizzle-orm": "^0.45.2",
"drizzle-zod": "^0.8.3",
"figlet": "^1.11.0",
"inquirer": "^14.0.2",
"typescript": "^6.0.3",
"vcard4-ts": "^0.4.1",
"vcards-js": "^2.11.1",
"vcf": "^2.1.2",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/figlet": "^1.7.0",
"@types/vcards-js": "^2.10.5",
"@types/vcf": "^2.0.7",
"drizzle-kit": "^0.31.10"
}
}