-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
68 lines (68 loc) · 1.91 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
{
"name": "prisma-docs-generator",
"version": "0.8.0",
"main": "dist/index.js",
"license": "MIT",
"bin": {
"prisma-docs-generator": "dist/cli.js"
},
"description": "Documentation reference generator for Prisma Schema",
"author": {
"name": "Harshit Pant",
"email": "pantharshit00@gmail.com",
"url": "https://harshitpant.com"
},
"keywords": [
"prisma2",
"prisma",
"prisma-generator",
"prisma-schema",
"code-generation",
"docs",
"reference"
],
"homepage": "https://github.com/pantharshit00/prisma-docs-generator",
"repository": {
"url": "git@github.com:pantharshit00/prisma-docs-generator.git"
},
"bugs": {
"email": "pantharshit00@gmail.com",
"url": "https://github.com/pantharshit00/prisma-docs-generator/issues"
},
"dependencies": {
"@prisma/generator-helper": "^4.14.0",
"@prisma/internals": "^4.14.0",
"express": "^4.18.2",
"indent-string": "^5.0.0",
"kleur": "^4.1.5",
"meow": "9",
"pluralize": "^8.0.0",
"prismjs": "^1.29.0",
"ts-toolbelt": "^9.6.0"
},
"devDependencies": {
"@prisma/client": "^4.14.0",
"@types/express": "4.17.17",
"@types/jest": "^29.5.1",
"@types/node": "^20.1.7",
"@types/prismjs": "^1.26.0",
"cpy-cli": "^4.2.0",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"prisma": "^4.14.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"scripts": {
"start": "ts-node main.ts",
"generate": "prisma generate",
"clean": "rimraf dist && rimraf styles_generator/dist && rimraf src/styles/main.css",
"build:gen": "tsc -d && cpy --flat src/styles dist/styles",
"build:styles": "cd styles_generator && yarn build && cpy --flat ./dist/main.css ../src/styles/",
"build": "yarn build:styles && yarn build:gen",
"test": "jest",
"format": "prettier --ignore-path .gitignore src/**/*.ts --write"
}
}