-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.25 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.25 KB
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
{
"name": "journey-advisor",
"version": "1.0.0",
"private": true,
"description": "journey-advisor",
"author": "Taron Vardanyan",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"**/*.ts\" \"**/*.tsx\" \"**/*.json\"",
"test": "npm run type-check && npm run lint",
"lint": "eslint . --ext .ts,.tsx",
"type-check": "tsc --pretty"
},
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.9.3",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@mdx-js/mdx": "~1.6.22",
"@mdx-js/react": "^1.6.22",
"@mui/material": "^5.8.7",
"@react-google-maps/api": "^2.12.0",
"@types/google-map-react": "^2.1.7",
"axios": "^0.27.2",
"babel-plugin-styled-components": "^2.0.7",
"gatsby": "^4.18.0",
"gatsby-plugin-env-variables": "^2.2.0",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-image": "^2.18.0",
"gatsby-plugin-manifest": "^4.18.0",
"gatsby-plugin-material-ui": "^4.1.0",
"gatsby-plugin-mdx": "^3.18.0",
"gatsby-plugin-react-helmet": "^5.18.0",
"gatsby-plugin-sharp": "^4.18.0",
"gatsby-plugin-styled-components": "^5.18.0",
"gatsby-source-filesystem": "^4.18.0",
"gatsby-theme-material-ui": "^5.2.0",
"gatsby-transformer-sharp": "^4.18.0",
"google-map-react": "^2.2.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-helmet": "^6.1.0",
"styled-components": "^5.3.5",
"yarn": "^1.22.19"
},
"devDependencies": {
"@types/node": "^17.0.45",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/react-helmet": "^6.1.5",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-webpack-plugin": "^3.2.0",
"gatsby-plugin-eslint": "^4.0.2",
"prettier": "2.7.1",
"typescript": "^4.7.4"
}
}