-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
53 lines (53 loc) · 1.46 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
{
"name": "bugzilla-graphql-gateway",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=10.0.0",
"yarn": ">=1.7.0"
},
"main": "build/index.js",
"author": "Eli Perelman <[email protected]>",
"license": "MPL-2.0",
"scripts": {
"build": "neutrino build --require dotenv/config",
"start": "neutrino start --require dotenv/config",
"lint": "neutrino lint --require dotenv/config",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"lint-staged": {
"*.js": "yarn lint"
},
"devDependencies": {
"@neutrinojs/airbnb-base": "^8.1.1",
"@neutrinojs/node": "^8.1.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"neutrino": "^8.1.1",
"neutrino-middleware-restart-server": "^1.0.1",
"prettier": "^1.10.2",
"raw-loader": "^0.5.1"
},
"dependencies": {
"compression": "^1.7.2",
"dataloader": "^1.4.0",
"deepmerge": "^2.0.1",
"dotenv": "^5.0.0",
"graphql-depth-limit": "^1.1.0",
"graphql-iso-date": "^3.5.0",
"graphql-list-fields": "^2.0.1",
"graphql-type-json": "^0.2.0",
"graphql-validation-complexity": "^0.2.2",
"graphql-yoga": "^1.16.9",
"node-fetch": "^2.6.1",
"query-string": "^6.0.0",
"sift": "^5.1.0",
"source-map-support": "^0.5.3",
"snyk": "^1.193.2"
},
"snyk": true
}