forked from s12v/graphql-devtools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.26 KB
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
{
"name": "graphql-devtools",
"version": "1-SNAPSHOT",
"main": "index.js",
"repository": "git@bitbucket.org:snov/graphql-devtools.git",
"author": "Sergey Novikov <snov@snov.me>",
"license": "MIT",
"scripts": {
"build": "webpack -p",
"start": "webpack-dev-server",
"test": "./node_modules/mocha/bin/mocha --require babel-register --reporter spec client/test",
"package": "zip -r extension.zip * -x node_modules/\\* client/\\* webpack.config.js yarn\\* \\*.zip"
},
"watch": [
"{client}/**/*.jsx"
],
"dependencies": {
"graphql": "^0.11.7",
"graphql-syntax-highlighter-react": "^0.3.1",
"path": "^0.12.7",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-syntax-highlighter": "^6.0.2",
"react-table": "^6.7.4",
"react-tabs": "^2.1.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.3"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"css-loader": "^0.28.7",
"deepmerge": "^2.0.1",
"html-webpack-plugin": "^2.30.1",
"mocha": "^4.0.1",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0"
}
}