-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.02 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.02 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
{
"name": "employee-directory-app",
"version": "0.0.1",
"description": "Employee Directory app based on GraphQL server with Mongoose (MongoDB) and Node.js",
"main": "index.js",
"scripts": {
"start": "node --harmony index.js",
"client": "node 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": "l4c",
"license": "MIT",
"dependencies": {
"babel": "^5.6.14",
"babel-core": "^5.6.15",
"co": "^4.5.4",
"debug": "^2.2.0",
"graphql": "^0.2.4",
"koa": "^0.21.0",
"koa-bodyparser": "^2.0.1",
"koa-mount": "^1.3.0",
"koa-qs": "^2.0.0",
"koa-router": "^5.1.1",
"koa-static": "^1.4.9",
"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"
}
}