forked from graphql-kit/graphql-faker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.5 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
69
70
71
72
73
74
75
76
{
"name": "graphql-faker",
"version": "2.0.0-rc.25",
"description": "Mock or extend your GraphQL API with faked data. No coding required",
"main": "dist/index.js",
"bin": {
"graphql-faker": "dist/index.js"
},
"engines": {
"node": ">= 12.x"
},
"scripts": {
"test": "npm run check && npm run prettier:check",
"check": "tsc --noEmit",
"start": "nodemon src/index.ts",
"debug": "ts-node --inspect --compilerOptions '{\"inlineSources\":true}' src/index.ts",
"start:editor": "webpack-dev-server --config webpack.config.js",
"build:editor": "webpack -p --config webpack.config.js",
"build:typescript": "tsc",
"copy:graphql": "cp src/*.graphql dist/",
"copy:editor": "mkdir \"dist/editor\" && cp src/editor/*.html dist/editor && cp src/editor/*.js dist/editor && cp src/editor/*.css dist/editor && cp src/editor/*.svg dist/editor",
"build:all": "rm -rf dist && mkdir dist && npm run build:editor && npm run build:typescript && npm run copy:graphql && npm run copy:editor",
"prettier": "prettier --ignore-path .gitignore --write --list-different .",
"prettier:check": "prettier --ignore-path .gitignore --check ."
},
"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.19.0",
"@types/cors": "2.8.10",
"@types/faker": "5.5.1",
"@types/react": "16.9.35",
"@types/react-dom": "16.9.8",
"@types/yargs": "15.0.5",
"classnames": "2.3.1",
"codemirror": "5.60.0",
"codemirror-graphql": "0.11.6",
"css-loader": "3.5.3",
"graphiql": "0.17.5",
"marked": "1.1.0",
"mini-css-extract-plugin": "0.9.0",
"nodemon": "2.0.7",
"prettier": "2.2.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"style-loader": "1.2.1",
"ts-loader": "7.0.5",
"ts-node": "9.1.1",
"typescript": "4.2.4",
"webpack": "4.43.0",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.11.2"
},
"dependencies": {
"body-parser": "1.19.0",
"chalk": "4.1.0",
"cors": "2.8.5",
"express": "4.17.1",
"express-graphql": "0.12.0",
"faker": "5.5.3",
"graphql": "14.7.0",
"graphql-voyager": "1.0.0-rc.31",
"moment": "2.29.1",
"node-fetch": "2.6.1",
"open": "8.0.5",
"yargs": "15.3.1"
}
}