-
Notifications
You must be signed in to change notification settings - Fork 102
/
package.json
36 lines (36 loc) · 963 Bytes
/
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
{
"name": "graphql-server",
"version": "1.0.0",
"description": "GraphQL server with Mongoose (MongoDB) and Node.js",
"main": "index.js",
"scripts": {
"start": "node --harmony src/server/index.js",
"client": "node src/client/index.js",
"test": "NODE_ENV=test mocha --compilers js:babel/register --require co-mocha $(find src -name \"*.spec.js\")",
"seed": "node --harmony ./seed"
},
"author": "RisingStack",
"license": "MIT",
"dependencies": {
"babel": "^5.6.14",
"babel-core": "^5.6.15",
"co": "^4.5.4",
"co-body": "^2.0.0",
"debug": "^2.2.0",
"graphql": "^0.2.4",
"koa": "^0.21.0",
"koa-qs": "^2.0.0",
"koa-router": "^5.1.1",
"mongoose": "^4.0.6",
"superagent": "^1.2.0"
},
"devDependencies": {
"chai": "^3.0.0",
"co-mocha": "^1.1.2",
"co-supertest": "0.0.10",
"mocha": "^2.2.5",
"sinon": "^1.15.4",
"sinon-chai": "^2.8.0",
"supertest": "^1.0.1"
}
}