-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.66 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
{
"private": true,
"name": "minimal-blog",
"description": "Typography driven, feature-rich blogging theme with minimal aesthetics. Includes tags/categories support and extensive features for code blocks such as live preview, line numbers, and line highlighting.",
"version": "1.1.7",
"author": "LekoArts <[email protected]>",
"license": "MIT",
"starter-name": "gatsby-starter-minimal-blog",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"deploy": "gatsby build && gh-pages -d public -r https://[email protected]/sayjeyhi/sayjeyhi.com",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"develop:cypress": "cross-env CYPRESS_SUPPORT=y yarn develop",
"build:cypress": "cross-env CYPRESS_SUPPORT=y yarn build",
"test": "echo \"Will write tests! :) -> https://gatsby.dev/unit-testing\"",
"start": "gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean"
},
"dependencies": {
"@iconbox/eva": "^2.0.1",
"@lekoarts/gatsby-theme-minimal-blog": "^2.4.0",
"@n8tb1t/use-scroll-position": "^2.0.3",
"babel-plugin-styled-components": "^1.13.1",
"gatsby": "^2.24.3",
"gatsby-plugin-google-gtag": "^3.7.1",
"gatsby-plugin-manifest": "^2.4.18",
"gatsby-plugin-mdx": "latest",
"gatsby-plugin-netlify": "^2.3.11",
"gatsby-plugin-offline": "^3.2.18",
"gatsby-plugin-sass": "^4.8.0",
"gatsby-plugin-sitemap": "^2.4.11",
"gatsby-plugin-styled-components": "^4.8.0",
"gatsby-plugin-typography": "^2.5.10",
"gh-pages": "^3.1.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-typography": "^0.16.19",
"recoil": "^0.3.1",
"sass": "^1.35.1",
"styled-components": "^5.3.0",
"swiper": "^6.7.5",
"typeface-inter": "^3.18.1",
"typeface-lalezarregular": "^1.0.1",
"typeface-vazir": "^1.0.1",
"typeface-yekan": "^1.0.11",
"typography": "^0.16.19"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2",
"eslint": "^7.4.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-webpack": "^0.12.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8"
},
"moduleRoots": [
"app"
],
"lint-staged": {
"*.js": [
"eslint --fix",
"git add --force"
],
"*.json": [
"prettier --write",
"git add --force"
]
},
"pre-commit": "lint:staged",
"eslintIgnore": [
"*.test.js",
"*.config.js",
"internals"
]
}