-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.14 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
{
"name": "easygraphql-firebase",
"version": "0.0.4",
"description": "Create GraphQL server connected with Firebase just with a schema.",
"bin": {
"easygraphql-firebase": "./bin/easygraphql-firebase.js"
},
"scripts": {
"prettier:check": "prettier --write './{bin,commands,util}/**/*.{js,graphql}'",
"prettier:format": "prettier --write './{bin,commands,util}/**/*.{js,graphql}'"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier:format && git add ."
}
},
"homepage": "https://github.com/EasyGraphQL/easygraphql-firebase",
"author": {
"name": "EasyGraphQL",
"url": "https://github.com/EasyGraphQL"
},
"repository": {
"type": "git",
"url": "https://github.com/EasyGraphQL/easygraphql-firebase"
},
"bugs": {
"url": "https://github.com/EasyGraphQL/easygraphql-firebase/issues"
},
"license": "MIT",
"dependencies": {
"clipboardy": "^1.2.3",
"easygraphql-parser": "0.0.2",
"firebase": "^5.7.0",
"fs-extra": "^7.0.1",
"inquirer": "^6.2.1",
"minimist": "^1.2.0",
"ora": "^3.0.0"
},
"devDependencies": {
"husky": "^3.0.8",
"prettier": "^1.18.2"
}
}