-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.35 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
{
"name": "gmn-boilerplate",
"version": "1.0.0",
"description": "Boilerplate monorepo",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint api web --ext js --ext jsx --fix",
"install:web": "cd web && npm install",
"install:api": "cd api && npm install",
"postinstall": "npm-run-all --parallel install:*"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/tcerdaITBA/Serverless-Graphql-Next.js-boilerplate.git"
},
"keywords": [
"next",
"nextjs",
"graphql",
"apollo",
"emotion",
"react",
"serverless",
"mongoose",
"mongodb",
"api"
],
"author": "tcerdaITBA",
"license": "MIT",
"bugs": {
"url": "https://github.com/tcerdaITBA/Serverless-Graphql-Next.js-boilerplate/issues"
},
"homepage": "https://github.com/tcerdaITBA/Serverless-Graphql-Next.js-boilerplate#readme",
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.3",
"husky": "^1.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.15.3"
}
}