forked from BrasilAPI/BrasilAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.94 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.94 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "brasilapi",
"version": "1.0.0",
"description": "Vamos transformar o Brasil em uma API?",
"engines": {
"npm": ">=10",
"node": ">=20 <22"
},
"dependencies": {
"@djpfs/react-vlibras": "2.0.2",
"adm-zip": "0.5.10",
"apollo-server-micro": "2.24.0",
"axios": "1.8.3",
"bluebird": "3.7.2",
"cep-promise": "4.4.1",
"core-js": "3.33.1",
"cors": "2.8.5",
"dayjs": "1.11.7",
"fast-xml-parser": "4.0.11",
"graphql": "15.8.0",
"is-in-subnet": "4.0.1",
"lodash": "4.17.21",
"micro-cors": "0.1.1",
"mobx": "6.7.0",
"next": "^12.3.4",
"next-connect": "0.12.1",
"next-sitemap": "1.6.168",
"papaparse": "5.4.0",
"piscina": "3.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "4.7.1",
"redoc": "2.0.0",
"sass": "1.56.1",
"selic": "1.1.0",
"styled-components": "5.3.6",
"vite": "6.2.2",
"wikijs": "6.4.0"
},
"devDependencies": {
"@vitest/coverage-istanbul": "3.0.8",
"@vitest/eslint-plugin": "1.1.37",
"async-retry": "1.3.3",
"commitizen": "4.2.5",
"concurrently": "8.2.2",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.57.1",
"eslint-config-airbnb": "19.0.4",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "6.10.1",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"github-contributors-list": "1.2.5",
"husky": "8.0.0",
"kill-port": "1.6.1",
"lint-staged": "13.0.4",
"prettier": "2.8.0",
"vitest": "3.0.8"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"preconcurrently": "kill-port 3000",
"concurrently": "concurrently -s first -P -k -n next,vitest \"npm run dev\" \"vitest {@}\"",
"test": "npm run concurrently -- --hide dev -- run",
"test:watch": "vitest watch",
"test:watch:services": "npm run concurrently -- -- watch",
"fix": "eslint . --ext .js --fix",
"commit": "cz",
"precommit": "lint-staged",
"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",
"prepare": "husky install"
},
"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"
}
}
}