forked from pantharshit00/prisma-docs-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.87 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
{
"name": "prisma-docs-generator",
"version": "0.5.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": "[email protected]",
"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": "[email protected]:pantharshit00/prisma-docs-generator.git"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/pantharshit00/prisma-docs-generator/issues"
},
"dependencies": {
"@prisma/generator-helper": "^3.1.1",
"@prisma/sdk": "^3.1.1",
"express": "^4.17.1",
"indent-string": "^4.0.0",
"kleur": "^4.1.4",
"meow": "^9.0.0",
"pluralize": "^8.0.0",
"prismjs": "^1.25.0"
},
"devDependencies": {
"@prisma/client": "^3.1.1",
"@types/express": "4.17.10",
"@types/jest": "^27.0.2",
"@types/node": "^16.9.6",
"@types/prismjs": "^1.16.6",
"cpy-cli": "^3.1.1",
"jest": "^27.2.1",
"prettier": "^2.4.1",
"prisma": "^3.1.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"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 src/styles dist/styles",
"build:styles": "cd styles_generator && yarn build && cpy ./dist/main.css ../src/styles/",
"build": "yarn build:styles && yarn build:gen",
"test": "jest",
"format": "prettier --ignore-path .gitignore src/**/*.ts --write"
}
}