-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
101 lines (101 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
{
"version": "1.2",
"name": "juliano-lima-personal-blog",
"description": "My personal blog, with my knowledge translated into markdown, html, gifs and javascript",
"main": "n/a",
"scripts": {
"develop": "yarn run clean && gatsby develop",
"build": "yarn run clean && gatsby build --prefix-paths --verbose",
"deploy": "yarn run clean && gatsby build --prefix-paths && gh-pages -d docs -b gh-pages",
"gh-pages-deploy": "node ./scripts/deploy.js",
"clean": "rimraf .cache public",
"lint": "eslint --cache --ext .js,.jsx .",
"test": "jest --config ./jest/jest-config.js",
"test:coverage": "jest --coverage --config ./jest/jest-config.js",
"test:watch": "jest --watch --config ./jest/jest-config.js"
},
"repository": "https://github.com/JulianoGTZ/juliano-lima-personal-blog",
"author": "Alexander Shelepenok <[email protected]>, Juliano Lima <[email protected]>",
"license": "MIT",
"keywords": [
"gatsby",
"graphql",
"netlify",
"pagination",
"categories",
"tags",
"prismjs",
"static",
"lost",
"blog",
"minimal",
"react",
"theme",
"starter",
"disqus"
],
"dependencies": {
"@reach/router": "^1.3.4",
"autoprefixer": "^10.4.4",
"classnames": "^2.2.6",
"eslint-config-prettier": "^8.5.0",
"execa": "^4.0.3",
"gatsby": "3.15.0",
"gatsby-plugin-catch-links": "^3.14.0",
"gatsby-plugin-feed": "^3.14.0",
"gatsby-plugin-google-gtag": "^3.14.0",
"gatsby-plugin-manifest": "^3.15.0",
"gatsby-plugin-optimize-svgs": "^1.0.3",
"gatsby-plugin-react-helmet": "^4.14.0",
"gatsby-plugin-sass": "^4.14.0",
"gatsby-plugin-sharp": "^3.15.0",
"gatsby-plugin-sitemap": "^4.10.0",
"gatsby-remark-autolink-headers": "^4.11.0",
"gatsby-remark-copy-linked-files": "^4.11.0",
"gatsby-remark-external-links": "0.0.4",
"gatsby-remark-images": "^5.11.0",
"gatsby-remark-katex": "^5.11.0",
"gatsby-remark-prismjs": "^5.11.0",
"gatsby-remark-relative-images-v2": "^0.1.5",
"gatsby-remark-responsive-iframe": "^4.11.0",
"gatsby-remark-smartypants": "^4.11.0",
"gatsby-source-filesystem": "^3.14.0",
"gatsby-transformer-remark": "^4.12.0",
"gatsby-transformer-sharp": "^3.14.0",
"katex": "^0.16.10",
"lodash": "^4.17.15",
"lost": "8.3.1",
"moment": "^2.29.4",
"node-notifier": "^10.0.1",
"node-sass": "^6.0.0",
"normalize-scss": "^7.0.1",
"postcss-pxtorem": "6.0.0",
"prismjs": "^1.27.0",
"prop-types": "^15.8.1",
"react": "17.0.2",
"react-disqus-comments": "^1.4.0",
"react-dom": "17.0.2",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"@babel/core": "7.17.10",
"@babel/preset-env": "7.18.6",
"@babel/preset-react": "^7.18.6",
"@testing-library/react": "^12.1.5",
"babel-jest": "28.1.2",
"babel-preset-gatsby": "2.13.0",
"eslint": "^7.7.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "26.7.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "6.1.1",
"identity-obj-proxy": "3.0.0",
"jest": "28.1.1",
"jest-cli": "27.5.1",
"react-dev-utils": "^12.0.1",
"rimraf": "3.0.2"
}
}