-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 930 Bytes
/
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
{
"name": "graphql.help.base",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"validate": "lerna run validate",
"i": "lerna run npm:install",
"u": "lerna run npm:update",
"ci": "lerna run npm:ci"
},
"engines": {
"node": "14.x"
},
"author": "Unspecified",
"contributors": [
{
"name": "Clark Sell",
"email": "[email protected]"
}
],
"keywords": [
"node, react, graphql, apollo"
],
"homepage": "https://graphql.help",
"bugs": {
"url": "https://github.com/HelloUnspecified/LearnGraphQL/issues"
},
"license": "MIT",
"devDependencies": {
"husky": "^4.2.5",
"lerna": "^3.21.0",
"prettier": "^2.0.5"
},
"repository": {
"type": "git",
"url": "https://github.com/HelloUnspecified/LearnGraphQL.git"
},
"husky": {
"hooks": {
"pre-push": "lerna run validate"
}
},
"dependencies": {}
}