-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.89 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
{
"name": "andrei-dobrinski-blog",
"private": true,
"description": "Andrei Dobrinski's tech blog",
"version": "0.1.0",
"author": "Andrei Dobrinski <dobrinski.andrei@gmail.com>",
"dependencies": {
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"babel-plugin-styled-components": "^1.10.7",
"gatsby": "^3.8.0",
"gatsby-image": "^3.8.0",
"gatsby-plugin-feed-mdx": "^1.1.0",
"gatsby-plugin-google-analytics": "^3.8.0",
"gatsby-plugin-manifest": "^3.8.0",
"gatsby-plugin-mdx": "^2.8.0",
"gatsby-plugin-offline": "^4.8.0",
"gatsby-plugin-react-helmet": "^4.8.0",
"gatsby-plugin-sharp": "^3.8.0",
"gatsby-plugin-styled-components": "^4.8.0",
"gatsby-plugin-typography": "^3.8.0",
"gatsby-plugin-web-font-loader": "^1.0.4",
"gatsby-remark-autolink-headers": "^4.5.0",
"gatsby-remark-copy-linked-files": "^4.5.0",
"gatsby-remark-images": "^5.5.0",
"gatsby-remark-prismjs": "^5.5.0",
"gatsby-remark-responsive-iframe": "^4.5.0",
"gatsby-remark-smartypants": "^4.5.0",
"gatsby-source-filesystem": "^3.8.0",
"gatsby-transformer-sharp": "^3.8.0",
"prismjs": "^1.20.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1",
"react-typography": "^0.16.19",
"styled-components": "^5.1.1",
"typeface-merriweather": "0.0.72",
"typeface-montserrat": "0.0.75",
"typography": "^0.16.19",
"typography-theme-wordpress-2016": "^0.16.19"
},
"devDependencies": {
"@babel/preset-typescript": "^7.24.7",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.0.6",
"@types/jest": "^26.0.23",
"babel-eslint": "^9.0.0",
"babel-jest": "^26.6.3",
"babel-preset-gatsby": "^1.1.0",
"eslint": "^7.30.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^4.1.0",
"eslint-config-react-hooks": "^1.0.0",
"eslint-plugin-html": "^5.0.3",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"gh-pages": "^3.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"prettier": "^1.16.4"
},
"homepage": "https://andreidobrinski.com/blog",
"keywords": [
"gatsby",
"blog"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/andreidobrinski/blog.git"
},
"scripts": {
"build": "gatsby build --prefix-paths",
"develop": "gatsby develop",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby clean && gatsby build --prefix-paths && gatsby serve --prefix-paths",
"clean": "gatsby clean",
"test": "jest",
"watch": "jest --watch"
}
}