forked from graphql-dotnet/graphql-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.82 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
{
"name": "graphql-dotnet",
"version": "0.15.1",
"description": "GraphQL for .NET",
"main": "index.js",
"scripts": {
"start": "webpack --progress",
"test": "babel-node tools/build.js test",
"test-release": "set CONFIGURATION=Release&& babel-node tools/build.js test",
"build": "babel-node tools/build.js",
"build-release": "set CONFIGURATION=Release&& babel-node tools/build.js",
"build-ci": "set CONFIGURATION=Release&& npm install && babel-node tools/build.js ci",
"build-nuget": "babel-node tools/build.js nuget",
"build-nuspec": "babel-node tools/build.js nuspec",
"build-artifacts": "babel-node tools/build.js artifacts",
"release": "set CONFIGURATION=Release&& babel-node tools/build.js ci",
"restore": "babel-node tools/build.js restore",
"setVersion": "babel-node tools/build.js setVersion"
},
"repository": {
"type": "git",
"url": "https://github.com/graphql-dotnet/graphql-dotnet.git"
},
"author": "Joe McBride",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphql-dotnet/graphql-dotnet/issues"
},
"homepage": "https://github.com/graphql-dotnet/graphql-dotnet",
"dependencies": {
"graphiql": "^0.7.8",
"graphql": "^0.7.0",
"isomorphic-fetch": "^2.1.1",
"react": "^15.3.1",
"react-dom": "^15.3.1"
},
"devDependencies": {
"babel": "^5.6.14",
"babel-eslint": "^3.1.23",
"babel-loader": "^5.3.2",
"chalk": "^1.1.3",
"child-process-promise": "^1.1.0",
"css-loader": "^0.24.0",
"eslint": "^0.24.0",
"eslint-plugin-babel": "^1.1.0",
"extract-text-webpack-plugin": "^1.0.1",
"moment": "^2.13.0",
"postcss-loader": "^0.10.1",
"rimraf": "^2.5.2",
"shelljs": "^0.7.4",
"style-loader": "^0.13.1",
"superagent": "^2.0.0",
"webpack": "^1.13.0",
"xmlbuilder": "^8.2.2"
}
}