forked from graphql-kit/graphql-voyager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 3.12 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
{
"name": "graphql-voyager",
"version": "1.0.0-rc.31",
"description": "GraphQL introspection viewer",
"main": "dist/voyager.lib.js",
"types": "typings/index.d.ts",
"scripts": {
"test": "npm run lint && npm run check && npm run testonly && npm run prettier:check && npm run check:spelling",
"start": "webpack serve --config=webpack-demo.config.js --mode=development",
"serve": "node ./scripts/serve-directory.js -p 9090 demo-dist",
"clean:release": "rm -rf dist middleware",
"clean:demo": "rm -rf demo-dist",
"bundle:standalone": "webpack --config=webpack.config.js --mode=production",
"bundle:lib": "NODE_ENV=lib webpack --config=webpack.config.js --mode=production",
"bundle": "npm run bundle:lib && npm run bundle:standalone",
"compile:middleware": "tsc -d src/middleware/index.ts --outDir middleware --lib ES6,DOM,esnext.asynciterable",
"build:release": "npm run bundle && npm run compile:middleware && npm run declarations",
"build:demo": "npm run clean:demo && NODE_ENV=production webpack --config=webpack-demo.config.js --mode=production",
"stats": "NODE_ENV=production webpack --json --config=webpack.config.js --mode=production > stats.json",
"lint": "eslint --cache --max-warnings 0 .",
"check": "tsc",
"prettier": "prettier --cache --cache-strategy metadata --write --list-different .",
"prettier:check": "prettier --cache --cache-strategy metadata --check .",
"check:spelling": "cspell --cache --no-progress '**/*'",
"testonly": "npm run build:demo && docker-compose up --build test",
"declarations": "tsc --emitDeclarationOnly -p tsconfig.lib.json"
},
"license": "MIT",
"devDependencies": {
"@playwright/test": "1.24.2",
"@types/commonmark": "0.27.5",
"@types/lodash": "4.14.182",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"@typescript-eslint/eslint-plugin": "5.30.7",
"@typescript-eslint/parser": "5.30.7",
"copy-webpack-plugin": "11.0.0",
"css-loader": "6.7.1",
"eslint": "8.20.0",
"file-loader": "6.2.0",
"graphql": "16.5.0",
"html-webpack-plugin": "5.5.0",
"mini-css-extract-plugin": "2.6.0",
"postcss-cssnext": "3.1.1",
"postcss-import": "12.0.1",
"postcss-loader": "3.0.0",
"postcss-variables-loader": "5.0.1",
"prettier": "2.7.1",
"raw-loader": "4.0.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-svg-loader": "2.1.0",
"style-loader": "0.23.1",
"svg-as-symbol-loader": "1.2.2",
"ts-loader": "5.3.3",
"typescript": "4.7.2",
"webpack": "5.73.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.9.1",
"webpack-node-externals": "3.0.0"
},
"peerDependencies": {
"graphql": ">=16.5.0",
"react": ">=15.4.2",
"react-dom": ">=15.4.2"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@f/animate": "^1.0.1",
"@mui/material": "^5.8.1",
"commonmark": "0.30.0",
"cspell": "^6.2.3",
"lodash": "4.17.21",
"svg-pan-zoom": "^3.6.1",
"viz.js": "2.1.2"
},
"repository": {
"type": "git",
"url": "https://github.com/IvanGoncharov/graphql-voyager.git"
}
}