forked from graphql/graphiql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.16 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "graphiql",
"version": "0.13.0",
"description": "An graphical interactive in-browser GraphQL IDE.",
"contributors": [
"Hyohyeon Jeong <[email protected]>",
"Lee Byron <[email protected]> (http://leebyron.com/)"
],
"homepage": "https://github.com/graphql/graphiql",
"bugs": {
"url": "https://github.com/graphql/graphiql/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/graphql/graphiql.git"
},
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist",
"graphiql.js",
"graphiql.min.js",
"graphiql.css",
"README.md",
"LICENSE"
],
"browserify-shim": {
"react": "global:React",
"react-dom": "global:ReactDOM"
},
"jest": {
"clearMocks": true,
"setupFiles": [
"<rootDir>/resources/enzyme.config.js"
],
"testEnvironment": "jsdom",
"testMatch": [
"**/__tests__/**/*-test.js",
"**/?(*.)+(spec|test).js?(x)"
],
"testPathIgnorePatterns": [
"\\\\node_modules\\\\",
"dist"
]
},
"scripts": {
"build": "bash ./resources/build.sh",
"check": "flow check",
"dev": "babel-node test/server.js",
"lint": "eslint --report-unused-disable-directives src",
"lint-check": "eslint --print-config .eslintrc | eslint-config-prettier-check",
"prettier": "prettier --write src/**/*.{js,jsx}",
"prepublish": ". ./resources/prepublish.sh",
"preversion": ". ./resources/checkgit.sh && npm test",
"test": "yarn check --integrity && npm run lint && npm run check && npm run testonly && npm run build",
"testonly": "jest"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"dependencies": {
"codemirror": "^5.47.0",
"codemirror-graphql": "^0.8.3",
"copy-to-clipboard": "^3.2.0",
"markdown-it": "^8.4.0"
},
"peerDependencies": {
"graphql": "^0.6.0 || ^0.7.0 || ^0.8.0-b || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0",
"prop-types": ">=15.5.0",
"react": "^15.6.0 || ^16.0.0",
"react-dom": "^15.6.0 || ^16.0.0"
},
"devDependencies": {
"@babel/cli": "7.4.4",
"@babel/core": "7.4.4",
"@babel/node": "7.2.2",
"@babel/plugin-proposal-class-properties": "7.4.4",
"@babel/preset-env": "7.4.4",
"@babel/preset-flow": "7.0.0",
"@babel/preset-react": "7.0.0",
"autoprefixer": "7.0.0",
"babel-eslint": "10.0.1",
"babel-jest": "^24.8.0",
"babelify": "10.0.0",
"browserify": "16.2.3",
"browserify-shim": "3.8.14",
"chai": "4.2.0",
"chai-subset": "1.6.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-15": "^1.4.0",
"eslint": "5.16.0",
"eslint-config-prettier": "4.2.0",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-react": "7.13.0",
"express": "5.0.0-alpha.5",
"express-graphql": "0.6.7",
"flow-bin": "0.98.1",
"graphql": "14.1.1",
"jest": "^24.8.0",
"jsdom": "15.0.0",
"lint-staged": "8.1.6",
"postcss-cli": "4.1.0",
"prettier": "1.17.0",
"prop-types": "15.7.2",
"react": "15.6.2",
"react-dom": "15.6.2",
"react-test-renderer": "15.6.2",
"uglify-js": "3.5.11",
"uglifyify": "5.0.1",
"watchify": "3.11.1"
}
}