-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.24 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.24 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
49
50
51
52
53
{
"name": "gateway",
"version": "1.0.0",
"description": "Main Chingu Gateway",
"main": "server/index.js",
"private": true,
"author": "Musaab Elfaqih <musaabelfaki@gmail.com>",
"license": "ISC",
"scripts": {
"start": "node server",
"dev": "nodemon server",
"test": "jest",
"test:verbose": "jest --verbose",
"lint": "npm run lint:node",
"lint:node": "eslint server/**/*.js"
},
"dependencies": {
"apollo-link-context": "^1.0.17",
"apollo-link-error": "^1.1.10",
"apollo-link-http": "^1.5.11",
"apollo-server-express": "^2.3.2",
"express": "^4.16.4",
"graphql": "^14.1.1",
"graphql-import": "^0.7.1",
"graphql-tools": "^4.0.4",
"https": "^1.0.0",
"morgan": "^1.9.1",
"node-fetch": "^2.3.0",
"winston": "^3.2.0"
},
"devDependencies": {
"eslint": "^5.12.1",
"eslint-config-google": "^0.11.0",
"eslint-config-prettier": "^4.0.0",
"graphql-cli": "^3.0.7",
"husky": "^1.3.1",
"jest": "^24.0.0",
"lint-staged": "^8.1.1",
"nodemon": "^1.18.9",
"prettier": "^1.16.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}