-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 990 Bytes
/
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
{
"version": "1.2.14",
"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": "MIT",
"dependencies": {
"@babel/parser": "^7.25.6",
"@babel/traverse": "^7.25.6",
"@babel/types": "^7.25.6",
"@prisma/generator-helper": "^5.19.0"
},
"devDependencies": {
"@types/babel__traverse": "^7.20.6",
"@types/node": "^20.14.13",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"@prisma/client": "^5.19.0",
"eslint": "^8.56.0",
"prisma": "^5.19.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=20.2.0"
}
}