-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.87 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
57
58
59
60
61
62
63
64
65
66
{
"name": "stackable-ui-api",
"version": "2.0.0",
"description": " Stackable.space UI API",
"author": "Parminder Klair <[email protected]>",
"license": "MIT",
"main": "bin/server.js",
"scripts": {
"start": "node bin/server.js",
"watch": "nodemon --watch src --inspect --debug bin/server.js",
"lint": "eslint --fix --ext .jsx,.js src/*.js src/**/*.js src/**/**/*.js"
},
"engines": {
"node": "^8.9.4",
"yarn": "^1.3.2"
},
"dependencies": {
"apollo-server-koa": "^1.3.2",
"async": "^2.6.0",
"aws-sdk": "^2.206.0",
"babel-core": "^6.26.0",
"babel-preset-koa2-node7": "^0.1.0",
"bcryptjs": "^2.4.3",
"boom": "^7.2.0",
"convict": "^4.0.2",
"dotenv": "^5.0.1",
"graphql": "^0.13.1",
"graphql-tools": "^2.21.0",
"graphql-type-json": "^0.2.0",
"html-template-tag": "^2.0.0",
"jsonwebtoken": "^8.2.0",
"koa": "^2.5.0",
"koa-better-error-handler": "^1.3.5",
"koa-bodyparser": "^4.2.0",
"koa-bunyan-logger": "^2.0.0",
"koa-compose": "^4.0.0",
"koa-compress": "^2.0.0",
"koa-conditional-get": "^2.0.0",
"koa-context-validator": "^0.4.1",
"koa-convert": "^1.2.0",
"koa-cors": "^0.0.16",
"koa-etag": "^3.0.0",
"koa-json": "^2.0.2",
"koa-json-error": "^3.1.2",
"koa-response-time": "^2.0.0",
"koa-router": "^7.4.0",
"merge-graphql-schemas": "^1.5.0",
"mongoose": "^5.0.9",
"mongoose-fill": "^1.7.0",
"nodemailer": "^4.6.2",
"randomstring": "^1.1.5",
"slugify": "^1.2.9",
"underscore": "^1.8.3",
"underscore.string": "^3.3.4"
},
"devDependencies": {
"babel-runtime": "^6.26.0",
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"nodemon": "^1.17.1",
"prettier": "^1.11.1"
}
}