forked from graphql/graphiql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.99 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
{
"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": "SEE LICENSE IN LICENSE",
"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"
},
"options": {
"mocha": "--full-trace --require resources/mocha-bootload src/**/*-test.js"
},
"scripts": {
"build": "bash ./resources/build.sh",
"check": "flow check",
"dev": "babel-node test/server.js",
"lint": "eslint src",
"lint-check": "eslint --print-config .eslintrc | eslint-config-prettier-check",
"precommit": "npm run testonly && lint-staged",
"prepublish": ". ./resources/prepublish.sh",
"preversion": ". ./resources/checkgit.sh && npm test",
"test": "npm run lint && npm run check && npm run testonly && npm run build",
"testonly": "babel-node ./node_modules/.bin/_mocha $npm_package_options_mocha"
},
"lint-staged": {
"*.js": [
"prettier --jsx-bracket-same-line --single-quote --trailing-comma=all --write",
"git add"
]
},
"dependencies": {
"codemirror": "^5.26.0",
"codemirror-graphql": "^0.7.1",
"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": {
"autoprefixer": "^7.0.0",
"babel-cli": "6.24.1",
"babel-eslint": "7.2.3",
"babel-plugin-syntax-async-functions": "6.13.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.22.0",
"babel-plugin-transform-regenerator": "6.24.1",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babelify": "7.3.0",
"browserify": "^14.4.0",
"browserify-shim": "3.8.14",
"chai": "4.1.1",
"chai-subset": "1.5.0",
"eslint": "4.4.1",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-babel": "4.1.2",
"eslint-plugin-react": "7.2.0",
"express": "5.0.0-alpha.5",
"express-graphql": "0.6.7",
"flow-bin": "0.52.0",
"graphql": "^14.1.1",
"husky": "^0.14.0",
"jsdom": "11.1.0",
"lint-staged": "^4.0.0",
"mocha": "3.5.0",
"postcss-cli": "4.1.0",
"prettier": "^1.4.4",
"prop-types": "15.5.8",
"react": "15.5.4",
"react-dom": "15.5.4",
"react-test-renderer": "15.6.1",
"uglify-js": "^3.0.20",
"uglifyify": "^4.0.2",
"watchify": "3.9.0"
}
}