-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.33 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
{
"name": "andrew-hummel-profile",
"description": "Andrew Hummel's personal profile site",
"version": "1.0.0",
"private": true,
"author": "Andrew Hummel <[email protected]>",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"build": "gatsby build",
"clean": "rimraf public && rimraf .cache",
"deploy": "rimraf .cache && gatsby build --prefix-paths && gh-pages -d public",
"dev": "GATSBY_GRAPHQL_IDE=playground gatsby develop -H 0.0.0.0",
"format": "prettier --write \"src/**/*.{ts,tsx,md}\"",
"lint": "eslint src/ --ext .js,.ts,.jsx,.tsx",
"lint-fix": "eslint {src,__tests__}/ --ext .js,.ts,.jsx,.tsx --fix",
"start": "npm run dev",
"test": "jest --coverage",
"tsc": "tsc"
},
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"@emotion/css": "^11.10.5",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/material": "^5.11.13",
"date-fns": "^2.29.3",
"emotion": "^11.0.0",
"gatsby": "^5.3.3",
"gatsby-plugin-canonical-urls": "^5.3.0",
"gatsby-plugin-emotion": "^8.3.0",
"gatsby-plugin-google-gtag": "^5.3.0",
"gatsby-plugin-image": "^3.3.2",
"gatsby-plugin-manifest": "^5.3.1",
"gatsby-plugin-offline": "^6.3.1",
"gatsby-plugin-react-helmet": "^6.3.0",
"gatsby-plugin-sharp": "^5.3.2",
"gatsby-plugin-typescript": "^5.3.1",
"gatsby-remark-copy-linked-files": "^6.3.0",
"gatsby-remark-images": "^7.3.1",
"gatsby-remark-prismjs": "^7.3.0",
"gatsby-remark-responsive-iframe": "^6.3.0",
"gatsby-remark-smartypants": "^6.3.0",
"gatsby-source-filesystem": "^5.3.1",
"gatsby-transformer-json": "^5.3.0",
"gatsby-transformer-remark": "^6.3.2",
"gatsby-transformer-sharp": "^5.3.1",
"graphql": "^16.6.0",
"materialize-css": "^1.0.0",
"modern-normalize": "^2.0.0",
"normalize.css": "^8.0.1",
"prism-themes": "^1.9.0",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-router": "^6.6.1",
"react-router-dom": "^6.6.1"
},
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@emotion/jest": "^11.10.5",
"@emotion/utils": "^1.2.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/classnames": "^2.3.0",
"@types/date-fns": "^2.6.0",
"@types/jest": "^29.2.4",
"@types/materialize-css": "^1.0.11",
"@types/node": "^20.2.5",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/react-helmet": "^6.1.6",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.3.1",
"babel-plugin-styled-components": "^2.0.7",
"babel-preset-gatsby": "^3.3.1",
"eslint": "^8.30.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-graphql": "^4.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettierx": "^0.18.0",
"eslint-plugin-react": "^7.31.11",
"fetch-mock": "^9.11.0",
"gh-pages": "^6.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"prettier": "^3.0.0",
"react-test-renderer": "^18.2.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.0.3",
"typescript": "^5.0.2"
},
"peerDependencies": {
"@parcel/namer-default": "^2.6.1"
}
}