-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.6 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
109
110
111
112
113
114
115
116
{
"name": "portfolio",
"version": "1.0.0",
"private": true,
"description": "portfolio",
"author": "rohitbakoliya",
"homepage": "https://rohitbakoliya.github.io",
"keywords": [
"rohitbakoliya",
"portfolio",
"personal",
"website",
"gatsby"
],
"scripts": {
"develop": "cross-env GATSBY_GRAPHQL_IDE=playground gatsby develop",
"start": "npm run develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"format": "prettier --write \"**/*.{js,jsx,md,html,css}\"",
"format:js": "prettier --write \"**/*.{js,jsx}\"",
"format:css": "prettier --write \"**/*.{css,scss}\"",
"lint": "npm run lint:js && npm run lint:css && npm run lint:md",
"lint:js": "eslint src --fix",
"lint:css": "stylelint src/**/*.js",
"lint:md": "remark content/ --ignore-pattern !__*.md"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/**/*.js": [
"prettier --write",
"eslint --cache",
"stylelint .js"
],
"./content/**/*.md": [
"npm run lint:md"
]
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/free-brands-svg-icons": "^5.15.1",
"@fortawesome/free-regular-svg-icons": "^5.15.1",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"@fortawesome/react-fontawesome": "^0.1.14",
"@icons-pack/react-simple-icons": "^3.13.0",
"babel-plugin-styled-components": "^1.12.0",
"gatsby": "^2.26.1",
"gatsby-image": "^2.8.0",
"gatsby-plugin-google-analytics": "^2.11.0",
"gatsby-plugin-manifest": "^2.9.0",
"gatsby-plugin-nprogress": "^2.7.0",
"gatsby-plugin-offline": "^3.10.2",
"gatsby-plugin-react-helmet": "^3.7.0",
"gatsby-plugin-robots-txt": "^1.5.5",
"gatsby-plugin-sharp": "^2.11.1",
"gatsby-plugin-sitemap": "^2.12.0",
"gatsby-plugin-styled-components": "^3.10.0",
"gatsby-remark-autolink-headers": "^2.9.0",
"gatsby-remark-embed-snippet": "^4.8.0",
"gatsby-remark-embedder": "^4.1.0",
"gatsby-remark-images": "^3.9.0",
"gatsby-remark-prismjs": "^3.11.0",
"gatsby-source-filesystem": "^2.11.0",
"gatsby-transformer-json": "^2.11.0",
"gatsby-transformer-remark": "^2.14.0",
"gatsby-transformer-sharp": "^2.12.0",
"intersection-observer": "^0.12.0",
"prismjs": "^1.23.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-grid-system": "^7.1.1",
"react-helmet": "^6.1.0",
"react-intersection-observer": "^8.31.0",
"react-lottie": "^1.2.3",
"react-scroll": "^1.8.1",
"react-slick": "^0.27.14",
"slick-carousel": "^1.8.1",
"styled-components": "^5.2.1",
"styled-normalize": "^8.0.7",
"typeface-montserrat": "^1.1.13",
"typeface-mulish": "^1.1.13"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.2.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"gatsby-plugin-eslint": "^2.0.8",
"husky": "^4.3.7",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"remark-cli": "^9.0.0",
"remark-preset-lint-recommended": "^5.0.0",
"stylelint": "^13.11.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
}
}