This repository has been archived by the owner on Jul 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
48 lines (48 loc) · 1.53 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
{
"name": "simonyi-tanfolyam-web",
"private": true,
"scripts": {
"build": "gatsby build --prefix-paths",
"start": "gatsby develop",
"develop": "gatsby develop",
"lint:js": "eslint --ignore-path .gitignore \"**/*.{js,jsx}\"",
"lint:css": "stylelint \"src/**/*.scss\"",
"lint": "yarn lint:js && yarn lint:css",
"format": "prettier --write \"**/*.{js,jsx,json,css,md}\""
},
"dependencies": {
"gatsby": "^2.18.22",
"gatsby-image": "^2.2.38",
"gatsby-plugin-google-analytics": "^2.1.33",
"gatsby-plugin-react-helmet": "^3.1.21",
"gatsby-plugin-sass": "^2.1.27",
"gatsby-plugin-sharp": "^2.3.13",
"gatsby-source-filesystem": "^2.1.46",
"gatsby-transformer-remark": "^2.6.48",
"gatsby-transformer-sharp": "^2.3.12",
"gatsby-transformer-yaml": "^2.2.23",
"lodash.flatten": "^4.4.0",
"node-sass": "^4.13.0",
"normalize.css": "^8.0.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1",
"react-icons": "^3.8.0",
"react-select": "^3.0.8",
"uuid": "^3.3.3"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"prettier": "^1.19.1",
"stylelint": "^13.0.0",
"stylelint-config-idiomatic-order": "^8.1.0",
"stylelint-config-recommended-scss": "^4.1.0",
"stylelint-scss": "^3.13.0"
}
}