-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.1 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
{
"name": "email-client",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "nodemon app --exec babel-node",
"clean": "rm -rf lib && mkdir lib",
"build": "npm run clean",
"prestart": "npm run build",
"fixtures": "./node_modules/babel-cli/bin/babel-node.js fixtures.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-polyfill": "^6.16.0",
"config": "^1.24.0",
"graphql": "^0.8.2",
"koa": "^2.0.0-alpha.7",
"koa-bodyparser": "^3.2.0",
"koa-graphql": "^0.6.0",
"koa-logger": "^1.3.0",
"koa-mount": "^2.0.0",
"koa-router": "^7.0.1",
"mongoose": "^4.7.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"babel-register": "^6.18.0",
"babel-watch": "^2.0.3",
"faker": "^3.1.0",
"minimist": "^1.2.0",
"mongoose-fakery": "^0.1.7",
"mongoose-fixture-loader": "^1.0.2",
"node-mongoose-fixtures": "^0.2.4"
}
}