-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
92 lines (92 loc) · 2.94 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
{
"name": "gatsby-personal-site",
"private": true,
"description": "A Gatsby Typescript project for my personal site",
"version": "1.0.0",
"author": "Ramon Morcillo @reymon359",
"scripts": {
"build": "gatsby build",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"develop": "gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"lint": "eslint --ignore-path .gitignore . --ext .ts,.tsx,.js,.jsx",
"lint:fix": "eslint --fix --ignore-path .gitignore . --ext .ts,.tsx,.js,.jsx",
"type-check": "tsc",
"type-check:watch": "tsc -w",
"prepare": "husky install"
},
"dependencies": {
"babel-plugin-styled-components": "1.13.3",
"classnames": "2.3.1",
"dotenv": "10.0.0",
"gatsby": "3.14.6",
"gatsby-image": "3.11.0",
"gatsby-plugin-canonical-urls": "3.14.0",
"gatsby-plugin-google-gtag": "4.24.0",
"gatsby-plugin-manifest": "3.14.0",
"gatsby-plugin-meta-redirect": "1.1.1",
"gatsby-plugin-offline": "4.14.0",
"gatsby-plugin-react-helmet": "4.14.0",
"gatsby-plugin-react-svg": "3.1.0",
"gatsby-plugin-sharp": "3.14.3",
"gatsby-plugin-sitemap": "4.10.0",
"gatsby-plugin-styled-components": "4.14.0",
"gatsby-plugin-typescript": "3.14.0",
"gatsby-remark-autolink-headers": "4.11.0",
"gatsby-remark-copy-linked-files": "4.11.0",
"gatsby-remark-embed-video": "3.1.1",
"gatsby-remark-images": "5.11.0",
"gatsby-remark-prismjs": "5.11.0",
"gatsby-remark-responsive-iframe": "4.11.0",
"gatsby-remark-smartypants": "4.11.0",
"gatsby-remark-video": "1.2.5",
"gatsby-source-filesystem": "3.14.0",
"gatsby-transformer-json": "3.14.0",
"gatsby-transformer-remark": "4.11.0",
"gatsby-transformer-sharp": "3.14.0",
"postcss": "8.4.7",
"prism-themes": "1.9.0",
"prismjs": "1.27.0",
"prop-types": "15.8.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-helmet": "6.1.0",
"react-tippy": "1.4.0",
"styled-components": "5.3.3"
},
"devDependencies": {
"@types/classnames": "2.3.1",
"@types/jest": "26.0.24",
"@types/node": "15.12.2",
"@types/prop-types": "15.7.4",
"@types/react": "17.0.39",
"@types/react-dom": "17.0.11",
"@types/react-helmet": "6.1.5",
"@types/styled-components": "5.1.23",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"eslint": "7.32.0",
"eslint-plugin-react": "7.29.1",
"eslint-plugin-react-hooks": "4.3.0",
"gh-pages": "3.2.3",
"husky": "6.0.0",
"typescript": "4.5.5"
},
"keywords": [
"gatsby",
"typescript"
],
"license": "none yet",
"repository": {
"type": "git",
"url": "https://github.com/reymon359/gatsby-personal-site"
},
"bugs": {
"url": "https://github.com/reymon359/gatsby-personal-site/issues"
},
"engines": {
"node": ">=16.14.0 <17.0.0"
}
}