-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.71 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
{
"name": "gatsby-starter-default",
"private": true,
"description": "A simple starter to get up and developing quickly with Gatsby",
"version": "0.1.0",
"author": "Alex Barashkov <[email protected]>",
"scripts": {
"start": "npm run develop",
"develop": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"format": "prettier --write .",
"lint": "npm run lint:js & npm run lint:styles & npm run lint:md",
"lint:fix": "npm run lint:js:fix & npm run lint:styles:fix & npm run lint:md:fix",
"lint:js": "eslint --ext .js,.jsx --ignore-path .gitignore .",
"lint:js:fix": "eslint --fix --ext .js,.jsx --ignore-path .gitignore .",
"lint:styles": "stylelint --ignore-path .gitignore '{**/*,*}.{css,sass,scss,md,html}'",
"lint:styles:fix": "stylelint --fix --ignore-path .gitignore '{**/*,*}.{css,sass,scss,md,html}'",
"lint:md": "markdownlint --ignore-path .gitignore .",
"lint:md:fix": "markdownlint --fix --ignore-path .gitignore .",
"prepare": "husky install"
},
"dependencies": {
"@svgr/webpack": "^5.5.0",
"classnames": "^2.3.1",
"gatsby": "^3.4.1",
"gatsby-image": "^3.4.0",
"normalize.css": "^8.0.1",
"postcss": "^8.2.14",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"sass": "^1.32.12"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"eslint": "^7.25.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"gatsby-alias-imports": "^1.0.6",
"gatsby-plugin-manifest": "^3.4.0",
"gatsby-plugin-offline": "^4.4.0",
"gatsby-plugin-react-helmet": "^4.4.0",
"gatsby-plugin-sass": "^4.4.0",
"gatsby-plugin-sharp": "^3.4.1",
"gatsby-plugin-svgr-svgo": "^1.2.2",
"gatsby-source-filesystem": "^3.4.0",
"gatsby-transformer-sharp": "^3.4.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"markdownlint-cli": "^0.27.1",
"prettier": "^2.2.1",
"stylelint": "^13.13.1",
"stylelint-config-css-modules": "^2.2.0",
"stylelint-config-recess-order": "^2.4.0",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.19.0"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pixel-point/gatsby-starter"
},
"bugs": {
"url": "https://github.com/pixel-point/gatsby-starter/issues"
}
}