-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
35 lines (35 loc) · 1.02 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
{
"name": "apollo-graphql-express-objection-server",
"version": "1.0.0",
"description": "A GraphQL (Apollo) Express server with JWT authentication, and using Objection.js ORM that automagically generates GQL schema types & resolvers.",
"main": "src/server.js",
"scripts": {
"test": "jest",
"dev": "./node_modules/.bin/nodemon --inspect src/server.js",
"start": "NODE_ENV=production node src/server.js"
},
"author": "Jack Chapple",
"license": "ISC",
"dependencies": {
"apollo-server-express": "^2.1.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"graphql": "^14.0.2",
"jsonwebtoken": "^8.3.0",
"knex": "^0.14.6",
"lodash": "^4.17.11",
"mysql": "^2.16.0",
"objection": "^1.1.10",
"objection-graphql": "^0.4.2"
},
"devDependencies": {
"eslint": "^4.16.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"jest": "^23.1.0",
"nodemon": "^1.18.4"
}
}