-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 889 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
{
"name": "gqlfake",
"version": "0.1.5",
"description": "A CLI tool that can be used to create fake, structured data using GraphQL schemas to specify fields and data types",
"main": "dist/index.js",
"bin": "dist/cli.js",
"types": "dist",
"files": [
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx tsc"
},
"keywords": [
"fake",
"data",
"generator",
"graphql"
],
"author": "DudeBro249",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/DudeBro249/gqlfake"
},
"devDependencies": {
"@types/pluralize": "^0.0.30",
"typescript": "^5.1.6"
},
"dependencies": {
"@faker-js/faker": "^8.0.2",
"chalk": "^4.1.2",
"commander": "^11.0.0",
"firebase-admin": "^11.10.1",
"graphql": "^16.7.1",
"pluralize": "^8.0.0"
}
}