-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.16 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
{
"name": "plex-api-graphql",
"version": "0.0.0",
"description": "Unofficial Graphql Server for Plex API",
"main": "index.js",
"repository": "git@github.com:markbrouch/plex-api-graphql.git",
"author": "Mark Brouch <mark.brouch@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "nodemon -x node examples/server.js",
"docs": "rimraf docs && graphdoc -s ./graphql/schema.graphql",
"prettier": "prettier --write \"**/*.{js,md,graphql,json}\"",
"precommit": "precise-commits"
},
"dependencies": {
"graphql-yoga": "^1.14.8",
"isomorphic-unfetch": "^2.0.0",
"jsonwebtoken": "^8.3.0",
"uuid": "^3.2.1",
"xml2js": "^0.4.19"
},
"devDependencies": {
"@2fd/graphdoc": "^2.4.0",
"express": "^4.16.3",
"husky": "^0.14.3",
"nodemon": "^1.17.5",
"precise-commits": "^1.0.2",
"prettier": "^1.13.5",
"rimraf": "^2.6.2"
},
"graphdoc": {
"output": "./docs",
"logo": "<a href=\"https://github.com/markbrouch/plex-api-graphql\" target=\"_blank\" style=\"display:block;padding:1rem 35%\"><img src=\"https://i.imgur.com/F28wFBk.png\" /></a>"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}