forked from kristianmandrup/graphql-faker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2 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
{
"name": "graphql-faker",
"version": "2.0.0",
"description": "Mock or extend your GraphQL API with faked data. No coding required",
"main": "dist/index.js",
"bin": "dist/index.js",
"scripts": {
"test": "jest",
"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 <[email protected]>",
"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.0",
"@types/cors": "2.8.4",
"@types/express": "4.16.0",
"@types/express-graphql": "0.6.1",
"@types/faker": "4.1.3",
"@types/graphql": "0.11.4",
"@types/jest": "^23.3.9",
"@types/lodash": "4.14.116",
"@types/yargs": "11.1.1",
"jest": "^23.6.0",
"nodemon": "1.18.3",
"ts-jest": "^23.10.4",
"ts-node": "7.0.1",
"typescript": "^3.1.6"
},
"dependencies": {
"body-parser": "1.18.3",
"chalk": "2.4.1",
"core-js": "2.5.7",
"cors": "2.8.4",
"escape-string-regexp": "^1.0.5",
"express": "4.16.3",
"express-graphql": "github:apis-guru/express-graphql#rootValue_dist",
"faker": "4.1.0",
"global": "^4.3.2",
"graphql": "github:apis-guru/graphql-js#directives-fork-dist",
"jsonfile": "^5.0.0",
"lodash": "4.17.10",
"moment": "2.22.2",
"node-fetch": "2.2.0",
"opn": "5.3.0",
"resolve-type-maps": "^1.1.3",
"yargs": "12.0.1"
}
}