forked from graphql-kit/graphql-faker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.66 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
{
"name": "graphql-faker",
"version": "2.0.0-rc.17",
"description": "Mock or extend your GraphQL API with faked data. No coding required",
"main": "dist/index.js",
"bin": "dist/index.js",
"engines": {
"node": ">= 8.x"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon -e ts --exec 'ts-node src/index.ts'",
"debug": "ts-node --inspect --compilerOptions '{\"inlineSources\":true}' src/index.ts",
"build:editor": "cd src/editor && yarn && npm run build && cd -",
"build:typescript": "tsc",
"copy:graphql": "cp src/*.graphql dist/",
"copy:editor": "mkdir -p dist/editor && cp src/editor/*.{html,js,css,svg} dist/editor",
"build:all": "npm run build:editor && npm run build:typescript && npm run copy:graphql && npm run copy:editor"
},
"repository": {
"type": "git",
"url": "git+https://github.com/APIs-guru/graphql-faker.git"
},
"author": "APIs.guru <founders@apis.guru>",
"license": "MIT",
"bugs": {
"url": "https://github.com/APIs-guru/graphql-faker/issues"
},
"homepage": "https://github.com/APIs-guru/graphql-faker#readme",
"devDependencies": {
"@types/body-parser": "1.17.1",
"@types/cors": "2.8.6",
"@types/express": "4.17.1",
"@types/faker": "4.1.6",
"@types/yargs": "13.0.3",
"nodemon": "1.19.4",
"ts-node": "8.4.1",
"typescript": "3.6.4"
},
"dependencies": {
"body-parser": "1.19.0",
"chalk": "2.4.2",
"cors": "2.8.5",
"express": "4.17.1",
"express-graphql": "0.9.0",
"faker": "4.1.0",
"graphql": "14.5.8",
"moment": "2.24.0",
"node-fetch": "2.6.0",
"open": "7.0.0",
"yargs": "14.2.0"
}
}