-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 2.32 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": "apollo-chat-api",
"version": "0.1.0",
"description": "Chat app built with Apollo",
"scripts": {
"mongo": "mongodb-runner start --name=dev --purge false",
"start": "NODE_ENV=development nodemon api/index.js --watch api --exec babel-node",
"lint": "eslint api migrations seeds",
"test": "NODE_ENV=test mocha --compilers js:babel-core/register --reporter spec --full-trace 'api/**/*.test.js' && npm run lint",
"continuous": "NODE_ENV=development nodemon api/index.js --watch api --exec \"npm test && babel-node\" ",
"seed": "NODE_ENV=development babel-node seeds/index.js",
"coveralls": "NODE_ENV=test babel-istanbul cover _mocha --report lcovonly 'api/**/*.test.js' && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/RamyElkest/apollo-chat-api.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/RamyElkest/apollo-chat-api/issues"
},
"homepage": "https://github.com/RamyElkest/apollo-chat-api#readme",
"devDependencies": {
"babel-cli": "6.22.1",
"babel-core": "6.20.0",
"babel-eslint": "7.1.1",
"babel-istanbul": "0.12.1",
"babel-loader": "6.2.9",
"babel-preset-es2015": "6.16.0",
"babel-preset-react": "6.16.0",
"babel-preset-stage-2": "6.17.0",
"babel-register": "6.18.0",
"chai": "3.5.0",
"chai-as-promised": "6.0.0",
"chai-http": "3.0.0",
"coveralls": "2.11.14",
"eslint": "3.14.1",
"eslint-config-airbnb": "12.0.0",
"eslint-plugin-babel": "3.3.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "6.9.0",
"mocha": "3.2.0",
"nodemon": "1.11.0"
},
"dependencies": {
"body-parser": "1.16.0",
"casual": "1.5.9",
"dataloader": "1.2.0",
"dotenv": "2.0.0",
"express": "4.14.1",
"express-session": "1.14.1",
"graphql": "0.9.0",
"graphql-server-express": "^0.5.2",
"graphql-subscriptions": "0.2.3",
"graphql-tools": "0.8.0",
"is-mongodb-running": "0.0.1",
"lodash": "4.17.3",
"mocha-lcov-reporter": "1.2.0",
"mongodb-runner": "3.4.0",
"mongoose": "^4.7.1",
"passport": "0.3.2",
"passport-github": "1.1.0",
"request-promise": "4.1.1",
"subscriptions-transport-ws": "0.4.0"
}
}