-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.5 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "release-status-graphql",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"start:watch": "nodemon --inspect index.js",
"lint": "eslint .",
"test": "npm run test:unit",
"test:unit": "jest",
"test:coverage": "jest --coverage"
},
"engines": {
"node": "10.21.0"
},
"author": "",
"license": "MIT",
"dependencies": {
"@octokit/rest": "18.2.0",
"apollo-datasource": "0.7.3",
"apollo-datasource-rest": "0.10.0",
"apollo-server": "2.21.0",
"apollo-server-cache-redis": "1.2.3",
"apollo-server-env": "3.0.0",
"apollo-server-plugin-response-cache": "0.6.0",
"config": "3.3.3",
"graphql": "15.5.0",
"graphql-extensions": "0.12.8",
"lodash": "4.17.21"
},
"devDependencies": {
"coveralls": "3.1.0",
"eslint": "7.20.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-graphql": "4.0.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.5",
"eslint-plugin-prettier": "3.3.1",
"husky": "5.1.1",
"jest": "26.6.3",
"nodemon": "2.0.7",
"prettier": "2.2.1",
"pretty-quick": "3.1.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && eslint --max-warnings 0 .",
"pre-push": "jest"
}
},
"jest": {
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/node_modules/**",
"!coverage/**",
"!**/vendor/**",
"!*.conf.js"
]
}
}