-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.19 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
{
"name": "localsocket",
"version": "1.0.0",
"main": "src/index.ts",
"type": "module",
"scripts": {
"start": "bun .",
"dev": "bun --inspect .",
"prisma": "bunx prisma",
"studio": "bunx prisma studio",
"migrate": "bunx prisma migrate dev",
"validate": "bunx prisma validate",
"generate": "prisma generate",
"test": "vitest",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --coverage.enabled=true --ui"
},
"keywords": [],
"author": "",
"license": "ISC",
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@prisma/client": "^5.17.0",
"pg": "^8.11.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/bun": "latest",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"@vitest/coverage-v8": "^1.4.0",
"@vitest/ui": "^1.4.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"prisma": "^5.17.0",
"typescript": "*",
"typescript-eslint": "^8.1.0",
"vitest": "^1.4.0"
}
}