-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1009 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
40
41
42
{
"name": "decotix",
"version": "2.1.20",
"description": "A decorator-focused typescript client for the Prisma schema file",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "jest dist",
"dev": "ts-node src/sometest.ts"
},
"keywords": [
"prisma",
"decorators",
"typescript"
],
"author": "Bedanta Mukhopadhay",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hydralite/decotix.git"
},
"bugs": {
"url": "https://github.com/hydralite/decotix/issues"
},
"readme": "https://github.com/hydralite/decotix#readme",
"devDependencies": {
"@types/glob": "^7.1.4",
"@types/is-glob": "^4.0.2",
"@types/jest": "^26.0.24",
"@types/node": "^16.4.1",
"jest": "^27.0.6",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"@prisma/sdk": "^2.27.0",
"glob": "^7.1.7",
"is-glob": "^4.0.1",
"reflect-metadata": "^0.1.13"
}
}