-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.46 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
{
"name": "graphile_api",
"version": "1.0.0",
"description": "GraphQL API for React Starter.",
"main": "index.js",
"scripts": {
"test": "mocha tests/index.js",
"start": "postgraphile -c postgres://postgres:dsdsdasd@127.0.0.1:5432/blue -j --watch",
"pubsub": "node utils/pubsub.js",
"tables": "node db/createTables.js"
},
"author": "Tadas Talaikis <info@talaikis.com>",
"license": "ISC",
"dependencies": {
"apollo-fetch": "^0.7.0",
"apollo-server-express": "^2.4.8",
"aws-serverless-express": "^3.3.6",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"express-session": "^1.15.6",
"graphql": "^14.2.1",
"graphql-tools": "^4.0.4",
"jsonwebtoken": "^8.5.1",
"knex": "^0.16.3",
"lodash": "^4.17.11",
"merge-graphql-schemas": "^1.5.8",
"mongoose-sql": "^1.0.45",
"morgan": "^1.9.1",
"nodemailer": "^6.0.0",
"passport": "^0.4.0",
"passport-facebook": "^3.0.0",
"passport-github": "^1.1.0",
"passport-google-oauth": "^2.0.0",
"passport-linkedin-oauth2": "^1.6.1",
"passport-twitter": "^1.0.4",
"pg": "^7.9.0",
"pg-pubsub": "^0.4.1",
"shortid": "^2.2.14",
"socket.io": "^2.2.0",
"stripe": "^6.28.0"
},
"devDependencies": {
"api-benchmark": "^0.5.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^5.16.0",
"faker": "^4.1.0",
"mocha": "^6.0.2",
"supertest": "^4.0.2"
}
}