-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
77 lines (77 loc) · 2.06 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@krsbx/prisma-repo",
"description": "Alternative of prisma-repo made by @krsbx",
"version": "0.2.7",
"main": "dist/generator/index.js",
"license": "MIT",
"bin": {
"prisma-repo": "dist/bin/index.js"
},
"engines": {
"node": ">=14.0"
},
"scripts": {
"start": "node dist/bin/index.js",
"dev": "npx tsc -w",
"build": "npx tsc && npx tsc-alias",
"prepack": "yarn build",
"test": "jest --verbose",
"test:dev": "jest --watchAll --verbose",
"prepare": "husky install"
},
"dependencies": {
"@prisma/generator-helper": "^4.11.0",
"@prisma/internals": "^4.11.0",
"lodash.camelcase": "^4.3.0",
"lodash.snakecase": "^4.1.1",
"prettier": "^2.8.1",
"template-file": "^6.0.1"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/app-root-path": "^1.2.4",
"@types/figlet": "^1.5.4",
"@types/fs-extra": "^9.0.13",
"@types/gradient-string": "^1.1.2",
"@types/jest": "27.0.3",
"@types/lodash.camelcase": "^4.3.7",
"@types/lodash.snakecase": "^4.1.7",
"@types/node": "^17.0.21",
"@types/prettier": "^2.7.1",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.4.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "27.4.7",
"lint-staged": "^13.0.3",
"prisma": "3.12.0",
"ts-jest": "27.1.4",
"tsc-alias": "^1.7.1",
"tsconfig-paths": "^4.1.1",
"tsup": "^6.2.2",
"typescript": "^4.7.4"
},
"peerDependencies": {
"@prisma/client": "*",
"lodash": "*"
},
"repository": "git@github.com:krsbx/prisma-repo-next.git",
"author": "krsbx <firdaus.sati51@gmail.cm>",
"keywords": [
"prisma",
"prisma2",
"generator"
],
"lint-staged": {
"src/**/*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}