forked from BrasilAPI/BrasilAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.09 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "brasilapi",
"version": "1.0.0",
"description": "Vamos transformar o Brasil em uma API?",
"dependencies": {
"apollo-server-micro": "2.24.0",
"axios": "0.21.1",
"cep-promise": "4.1.0",
"cors": "2.8.5",
"graphql": "15.5.0",
"lodash": "4.17.21",
"micro-cors": "0.1.1",
"mobx": "6.1.8",
"next": "10.2.0",
"next-connect": "0.9.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-icons": "4.2.0",
"redoc": "2.0.0-rc.53",
"sass": "1.32.12",
"styled-components": "5.3.0"
},
"devDependencies": {
"commitizen": "4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.1.0",
"eslint-config-prettier": "6.10.1",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "2.5.1",
"github-contributors-list": "1.2.5",
"husky": "4.2.5",
"jest": "25.1.0",
"lint-staged": "10.2.11",
"prettier": "2.0.4",
"wait-on": "4.0.0"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"test": "jest --forceExit",
"test:watch": "jest --watch",
"fix": "eslint . --ext .js --fix",
"commit": "cz",
"gen:contributors": "githubcontrib --owner BrasilAPI --repo BrasilAPI --sortBy contributions --sortOrder desc --filter filipedeschamps,lucianopf,dependabot[bot] --layoutStrategy $INIT_CWD/.github/contributors-list/layout-strategy-custom.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": "npm run fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BrasilAPI/BrasilAPI.git"
},
"author": "Filipe Deschamps",
"license": "MIT",
"bugs": {
"url": "https://github.com/BrasilAPI/BrasilAPI/issues"
},
"homepage": "https://github.com/BrasilAPI/BrasilAPI#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}