-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·87 lines (87 loc) · 2.61 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
{
"name": "great-gatsby",
"private": true,
"description": "portfolio and blog with markdown",
"version": "1.0.0",
"author": "@r0mankon",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "yarn lint && gatsby build",
"dev": "gatsby develop --port 3000",
"start": "gatsby serve --port 3001",
"clean": "gatsby clean && rm -rfv node_modules/.yarn-integrity && yarn install",
"lint": "eslint ./src",
"format": "prettier --write ./src",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.3",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.13.4",
"gatsby": "^5.10.0",
"gatsby-plugin-image": "^3.10.0",
"gatsby-plugin-manifest": "^5.10.0",
"gatsby-plugin-material-ui": "next",
"gatsby-plugin-offline": "^6.10.0",
"gatsby-plugin-sharp": "^5.10.0",
"gatsby-remark-images": "^7.10.0",
"gatsby-source-filesystem": "^5.10.0",
"gatsby-transformer-remark": "^6.10.0",
"gatsby-transformer-sharp": "^5.10.0",
"markdown-to-jsx": "^7.2.1",
"prism-react-renderer": "^2.0.5",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/node": "^20.3.1",
"@types/react": "^18.2.11",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "^8.42.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-unused-imports": "^2.0.0",
"eslint-webpack-plugin": "^4.0.1",
"gatsby-plugin-eslint": "^4.0.4",
"gatsby-plugin-no-sourcemaps": "^5.10.0",
"gatsby-plugin-root-import": "^2.0.9",
"prettier": "^2.8.8",
"typescript": "^5.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/edgetatic/great-gatsby"
},
"bugs": {
"url": "https://github.com/edgetatic/great-gatsby/issues"
},
"prettier": {
"tabWidth": 3,
"singleQuote": true,
"jsxSingleQuote": true,
"arrowParens": "avoid",
"endOfLine": "lf",
"importOrder": [
"^react",
"^gatsby",
"^@mui/(.*)$",
"^@",
"<THIRD_PARTY_MODULES>",
"^com/(.*)$",
"^libs/(.*)$",
"^config",
"^enums",
"^theme",
"^[../]",
"^[./]"
]
}
}