-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.18 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
{
"name": "@yuki/db",
"version": "2.0.0",
"private": true,
"license": "MIT",
"type": "module",
"exports": {
".": {
"type": "./dist/index.d.ts",
"default": "./src/index.ts"
}
},
"scripts": {
"build": "tsc",
"clean": "git clean -xdf .cache .turbo dist node_modules",
"dev": "tsc --watch",
"format": "prettier --check . --ignore-path ../../.gitignore",
"gnr": "bun with-env prisma generate",
"lint": "eslint",
"push": "bun with-env prisma db push",
"studio": "bun with-env prisma studio --browser none",
"typecheck": "tsc --noEmit --emitDeclarationOnly false",
"with-env": "dotenv -e ../../.env --"
},
"prettier": "@yuki/prettier-config",
"dependencies": {
"@neondatabase/serverless": "^0.10.4",
"@prisma/adapter-neon": "^6.4.1",
"@prisma/client": "^6.4.1",
"ws": "^8.18.1"
},
"devDependencies": {
"@types/ws": "^8.5.14",
"@yuki/eslint-config": "workspace:*",
"@yuki/prettier-config": "workspace:*",
"@yuki/tsconfig": "workspace:*",
"bufferutil": "^4.0.9",
"dotenv-cli": "^8.0.0",
"eslint": "latest",
"prettier": "latest",
"prisma": "^6.4.1",
"typescript": "latest"
}
}