-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.1 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
{
"name": "graphql-server-starter",
"version": "0.1.0",
"description": "GraphQl boilerplate server",
"main": "app.js",
"scripts": {
"start": "nodemon --exec babel-node app.js",
"lint": "eslint --ext .js schema/ resolvers/ models/ app.js helper.js"
},
"author": "kprocks86",
"license": "MIT",
"private": true,
"dependencies": {
"apollo-server-express": "^2.9.7",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"graphql": "^14.5.8",
"jsonwebtoken": "^8.5.1",
"merge-graphql-schemas": "^1.7.3",
"mongoose": "^5.7.8",
"morgan": "^1.9.1",
"path": "^0.12.7"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-3": "^6.24.1",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"husky": "^4.2.5",
"nodemon": "^1.19.4"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
}
}