-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.26 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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "vazajato",
"private": true,
"description": "Página listando todas as reportagens da #VazaJato.",
"version": "0.1.0",
"author": "Davi Ferreira <[email protected]>",
"dependencies": {
"@reach/menu-button": "^0.18.0",
"classnames": "^2.5.1",
"gatsby": "^5.7.0",
"gatsby-plugin-image": "^3.13.1",
"gatsby-plugin-manifest": "^5.7.0",
"gatsby-plugin-react-helmet": "^6.13.1",
"gatsby-plugin-react-helmet-canonical-urls": "^1.4.0",
"gatsby-plugin-react-svg": "^3.3.0",
"gatsby-plugin-remove-serviceworker": "^1.0.0",
"gatsby-plugin-robots-txt": "^1.8.0",
"gatsby-plugin-sharp": "^5.7.0",
"gatsby-plugin-sitemap": "^6.13.1",
"gatsby-source-filesystem": "^5.13.1",
"gatsby-transformer-json": "^5.13.1",
"gatsby-transformer-sharp": "^5.7.0",
"intersection-observer": "^0.12.2",
"lodash.groupby": "^4.6.0",
"lodash.map": "^4.6.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-intersection-observer": "^9.8.1",
"whatwg-fetch": "^3.6.20"
},
"devDependencies": {
"@babel/eslint-parser": "^7.23.10",
"@babel/preset-react": "^7.23.3",
"csvtojson": "^2.0.10",
"domino": "^2.1.6",
"eslint": "^8.35.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-react": "^13.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^9.0.11",
"image-downloader": "^4.3.0",
"lint-staged": "^15.2.2",
"moment": "^2.30.1",
"page-metadata-parser": "^1.1.4",
"prettier": "^3.2.5",
"short-uuid": "^4.2.2",
"signale": "^1.4.0",
"slugify": "^1.4.6",
"stylelint": "^16.2.1",
"stylelint-config-recommended": "^14.0.0",
"stylelint-order": "^6.0.2"
},
"overrides": {
"axios": "^0.28.0",
"loader-utils": "^1.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"svg-react-loader": "^0.4.6",
"xml2js": "^0.5.0"
},
"engines": {
"node": "20.11.1",
"npm": "10.2.4"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES=true gatsby build --log-pages",
"develop": "gatsby develop --port 4000",
"format": "prettier --write '**/*.{js,css,json}'",
"clean": "gatsby clean",
"prepare": "husky install",
"start": "npm run develop",
"serve": "gatsby serve",
"lint": "eslint . --cache --cache-location node_modules/.eslintcache && prettier --check '**/*.{js,css,json}' && stylelint './src/**/*.css'",
"test": "npm run lint",
"import": "node ./tasks/import"
},
"repository": {
"type": "git",
"url": "https://github.com/daviferreira/vazajato.me"
},
"bugs": {
"url": "https://github.com/daviferreira/vazajato.me/issues"
},
"cacheDirectories": [
"node_modules"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint",
"prettier --check"
],
"**/*.css": [
"prettier --check",
"stylelint"
],
"**/*.json": [
"prettier --check"
]
}
}