generated from okoroemeka/graphql-server-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.38 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.38 KB
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
{
"name": "graphql-server-template",
"version": "1.0.0",
"description": "template-repo",
"main": "index.js",
"repository": "https://github.com/okoroemeka/graphql-server-template.git",
"author": "okoroemeka <solomonokoro056@gmail.com>",
"license": "MIT",
"dependencies": {
"@babel/register": "^7.8.6",
"@octokit/rest": "^16.36.0",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.4",
"cross-env": "^7.0.2",
"dataloader": "^2.0.0",
"dotenv": "^8.2.0",
"graphql-yoga": "^1.18.3",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"pg": "^7.15.1",
"pg-hstore": "^2.3.3",
"sequelize": "^5.21.3"
},
"scripts": {
"clean": "rimraf dist",
"start:prod": "node dist/server.js",
"build": "babel ./src -d dist",
"migrate": "sequelize db:migrate",
"start": "nodemon --exec babel-node src/server",
"test": "NODE_ENV=testing jest --forceExit --runInBand"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/node": "^7.7.7",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.7.7",
"@babel/runtime": "^7.8.7",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.19.1",
"graphql": "^14.5.8",
"graphql-tools": "^4.0.6",
"jest": "^24.9.0",
"nodemon": "^2.0.2"
}
}