forked from oslabs-beta/MONARQ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (53 loc) · 1.18 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
{
"name": "monarq",
"version": "1.0.0",
"description": "Rest API to GraphQL queries",
"main": "index.js",
"scripts": {
"test": "jest --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oslabs-beta/MONARQ.git"
},
"author": "Team MONARQ",
"email": "[email protected]",
"contributors": [
"Peter Baniuszewicz",
"Amy Chen",
"Tyler Kneidl",
"Helen Regula"
],
"license": "MIT",
"keywords": [
"api",
"rest",
"restful",
"graphql",
"monarq",
"rest-to-graphql"
],
"bugs": {
"url": "https://github.com/oslabs-beta/MONARQ/issues"
},
"homepage": "https://github.com/oslabs-beta/MONARQ#readme",
"dependencies": {
"express": "^4.17.1"
},
"devDependencies": {
"eslint": "^7.27.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"graphql": "^15.5.0",
"jest": "^26.6.3",
"supertest": "^6.1.3"
},
"prettier": {
"singleQuote": true
}
}