-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.06 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.06 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
{
"version": "1.3.3",
"name": "ts-prisma",
"author": "Digital39999",
"scripts": {
"ts": "pnpm install typescript --save-dev -g",
"start": "node dist/index.js",
"build": "tsc --build",
"watch": "tsc --watch",
"lint": "eslint . --ext .ts",
"generate": "pnpm prisma generate",
"updates": "pnpm npm-check-updates -i --format group"
},
"repository": "https://github.com/Digital39999/ts-prisma",
"main": "dist/index.js",
"bin": {
"ts-prisma-generator": "dist/cli.js"
},
"license": "GPL-3.0",
"dependencies": {
"@babel/parser": "7.25.6",
"@babel/traverse": "7.25.6",
"@babel/types": "7.25.6",
"@prisma/generator-helper": "6.12.0"
},
"devDependencies": {
"@prisma/client": "6.12.0",
"@types/babel__traverse": "7.20.6",
"@types/node": "20.14.13",
"@typescript-eslint/eslint-plugin": "6.18.0",
"@typescript-eslint/parser": "6.18.0",
"eslint": "8.56.0",
"prisma": "6.12.0",
"typescript": "5.3.3"
},
"engines": {
"node": ">=20.2.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"@prisma/client",
"@prisma/engines",
"prisma"
]
}
}