-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.97 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
67
68
69
{
"name": "simple-slack-clone-koa2-graphql-vue-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "NODE_ENV=development nodemon --exec babel-node index.js",
"dev2": "NODE_ENV=development nodemon dev.js",
"flow": "./node_modules/.bin/flow",
"flow-typed": "./node_modules/.bin/flow-typed"
},
"repository": {
"type": "git",
"url":
"git+https://github.com/naelrouz/simple-slack-clone-koa2-graphql-vue-server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url":
"https://github.com/naelrouz/simple-slack-clone-koa2-graphql-vue-server/issues"
},
"homepage":
"https://github.com/naelrouz/simple-slack-clone-koa2-graphql-vue-server#readme",
"devDependencies": {
"axios": "^0.18.0",
"babel-cli": "^6.26.0",
"babel-jest": "^22.4.3",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-3": "^6.24.1",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"flow-bin": "^0.69.0",
"flow-typed": "^2.4.0",
"jest": "^22.4.3",
"nodemon": "^1.17.1"
},
"dependencies": {
"apollo-server-koa": "^1.3.2",
"bcrypt": "^1.0.3",
"colors": "^1.1.2",
"config": "^1.30.0",
"graphql": "^0.13.1",
"graphql-subscriptions": "^0.5.8",
"graphql-tools": "^2.21.0",
"jsonwebtoken": "^8.2.0",
"koa": "^2.5.0",
"koa-body": "^2.5.0",
"koa-logger": "^3.1.0",
"koa-passport": "^4.0.1",
"koa-router": "^7.4.0",
"koa2-cors": "^2.0.5",
"lodash": "^4.17.5",
"merge-graphql-schemas": "^1.5.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^7.4.1",
"pg-hstore": "^2.3.2",
"sequelize": "^4.35.2",
"subscriptions-transport-ws": "^0.9.7"
}
}