-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.17 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
{
"name": "skyler-lemay-portfolio",
"description": "Portfolio Site for Skyler Lemay",
"version": "1.0.0",
"author": "Skyler Lemay",
"repository": {
"type": "git",
"url": "git@github.com:entorenee/Portfolio-Site.git"
},
"keywords": [
"gatsby"
],
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"develop:offline": "GATSBY_CONTENTFUL_OFFLINE=true yarn develop",
"prettier": "is-ci prettier:check prettier:format",
"prettier:check": "prettier --check \"src/**/*.{js, json, md}\"",
"prettier:format": "prettier --write \"src/**/*.{js, json, md}\"",
"test": "is-ci test:coverage test:watch",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint '*/**/*.{js,ts,tsx}' --fix",
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch",
"validate": "yarn lint && yarn prettier && yarn test && yarn type-check",
"prepare": "husky install"
},
"license": "MIT",
"dependencies": {
"@emotion/babel-preset-css-prop": "^10.0.27",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"classnames": "^2.3.1",
"dotenv": "^16.0.0",
"gatsby": "^4.14.0",
"gatsby-image": "^3.0.0",
"gatsby-paginate": "^1.1.1",
"gatsby-plugin-feed": "^4.14.0",
"gatsby-plugin-google-analytics": "^4.14.0",
"gatsby-plugin-image": "^2.14.0",
"gatsby-plugin-offline": "^5.14.0",
"gatsby-plugin-react-helmet": "^5.14.0",
"gatsby-plugin-sharp": "^4.14.0",
"gatsby-plugin-sitemap": "^5.14.0",
"gatsby-plugin-typography": "^4.14.0",
"gatsby-remark-prismjs": "^6.14.0",
"gatsby-source-contentful": "^7.12.0",
"gatsby-transformer-remark": "^5.14.0",
"gatsby-transformer-sharp": "^4.14.0",
"prismjs": "^1.28.0",
"prop-types": "^15.8.1",
"react": "^16.13.1",
"react-axe": "^3.5.4",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-icons": "^3.10.0",
"react-typography": "^0.16.20",
"slugify": "^1.6.5",
"typography": "^0.16.21",
"typography-theme-lincoln": "^0.16.19"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@emotion/eslint-plugin": "^11.7.0",
"@emotion/jest": "^11.9.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.5",
"@types/node": "^17.0.32",
"@types/react": "^16.14.26",
"@types/react-dom": "^16.9.15",
"@types/react-helmet": "^6.1.5",
"babel-core": "^7.0.0-bridge",
"babel-jest": "^28.1.0",
"babel-plugin-emotion": "^10.0.33",
"eslint": "^6.8.0",
"eslint-config-dslemay": "^4.1.2",
"eslint-plugin-emotion": "^11.0.0",
"husky": "^7.0.0",
"is-ci-cli": "^2.2.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"prettier-config-dslemay": "^2.0.0",
"react-test-renderer": "^16.13.1",
"typescript": "^4.6.4"
},
"resolutions": {
"@typescript-eslint/eslint-plugin": "2.18.0"
}
}