-
-
Notifications
You must be signed in to change notification settings - Fork 226
/
package.json
85 lines (85 loc) · 3.03 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
77
78
79
80
81
82
83
84
85
{
"name": "graphql-faker",
"version": "2.0.0",
"description": "Mock or extend your GraphQL API with faked data. No coding required",
"author": "IvanGoncharov <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/graphql-kit/graphql-faker#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/graphql-kit/graphql-faker.git"
},
"funding": "https://github.com/graphql-kit/graphql-faker?sponsor=1",
"bugs": {
"url": "https://github.com/graphql-kit/graphql-faker/issues"
},
"main": "dist/index.js",
"bin": {
"graphql-faker": "dist/index.js"
},
"engines": {
"node": ">= 18.12.0"
},
"scripts": {
"preversion": "npm ci --ignore-scripts && npm test",
"test": "npm run lint && npm run check && npm run prettier:check && npm run check:spelling",
"lint": "eslint --cache --max-warnings 0 .",
"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": "rm -rf dist && mkdir dist && npm run build:editor && npm run build:typescript && npm run copy:graphql && npm run copy:editor",
"prettier": "prettier --cache --ignore-path .gitignore --write --list-different .",
"prettier:check": "prettier --cache --ignore-path .gitignore --check .",
"check:spelling": "cspell --cache --no-progress '**/*'"
},
"dependencies": {
"@faker-js/faker": "8.0.2",
"body-parser": "1.19.0",
"chalk": "4.1.0",
"cors": "2.8.5",
"express": "4.17.1",
"express-graphql": "0.12.0",
"graphql": "14.7.0",
"graphql-voyager": "1.0.0-rc.31",
"moment": "2.29.1",
"node-fetch": "2.6.1",
"open": "8.0.5"
},
"devDependencies": {
"@types/body-parser": "1.19.0",
"@types/cors": "2.8.10",
"@types/node": "20.2.5",
"@types/react": "16.9.35",
"@types/react-dom": "16.9.8",
"@typescript-eslint/eslint-plugin": "5.59.5",
"@typescript-eslint/parser": "5.59.5",
"codemirror": "5.60.0",
"codemirror-graphql": "0.11.6",
"cspell": "6.31.1",
"css-loader": "3.5.3",
"eslint": "8.40.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "10.0.0",
"graphiql": "0.17.5",
"marked": "1.1.0",
"mini-css-extract-plugin": "0.9.0",
"nodemon": "2.0.7",
"prettier": "2.8.8",
"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"
}
}