-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.24 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
{
"name": "graphql-postgresql-appsync",
"version": "1.0.0",
"description": "A stir fry of GraphQL, Postgresql AppSync",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npx nodemon src/index.js --exec babel-node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JimBeam2019/graphql-postgresql-appsync.git"
},
"author": "JimBeam",
"license": "ISC",
"bugs": {
"url": "https://github.com/JimBeam2019/graphql-postgresql-appsync/issues"
},
"homepage": "https://github.com/JimBeam2019/graphql-postgresql-appsync#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-react": "^7.13.0",
"eslint-watch": "^5.1.2",
"jest": "^24.8.0",
"nodemon": "^1.19.1"
},
"dependencies": {
"@apollo/federation": "^0.6.1",
"apollo-server": "^2.6.1",
"graphql": "^14.3.1",
"lodash": "^4.17.11",
"pg": "^7.11.0"
}
}