-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.64 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
{
"name": "karolis.sh",
"private": true,
"description": "Source code of karolis.sh",
"repository": "karolis-sh/karolis.sh",
"license": "MIT",
"author": "Karolis Šarapnickis <[email protected]>",
"main": "n/a",
"scripts": {
"build": "gatsby build",
"clean": "gatsby clean",
"deploy": "gatsby-plugin-s3 deploy -y",
"dev": "gatsby develop",
"format": "run-p format:*",
"format:js": "prettier --write '**/*.*'",
"format:package-json": "sort-package-json",
"lint": "run-p lint:*",
"lint:js": "eslint . --cache --ignore-path .gitignore",
"lint:md": "markdownlint-cli2 '**/*.md' '!node_modules' '!**/node_modules'",
"qa": "yarn lint",
"release": "yarn && run-s clean build deploy",
"try": "run-s clean build && gatsby serve -p 8000",
"prepare": "husky install"
},
"lint-staged": {
"package.json": "sort-package-json",
"*.js": "eslint --fix"
},
"dependencies": {
"@mdx-js/react": "^1.6.22",
"classnames": "^2.3.1",
"gatsby": "^3.10.1",
"gatsby-plugin-google-gtag": "^3.10.0",
"gatsby-plugin-next-seo": "^1.7.0",
"prism-react-renderer": "^1.2.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet-async": "^1.0.9"
},
"devDependencies": {
"@k.sh/eslint-config": "^1.21.2",
"@k.sh/prettier-config": "^0.4.1",
"@mdx-js/mdx": "^1.6.22",
"autoprefixer": "^10.3.1",
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^4.1.0",
"cssnano": "^5.0.7",
"dotenv": "^10.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-plugin-prettier": "^3.4.0",
"gatsby-plugin-advanced-sitemap": "^2.0.0",
"gatsby-plugin-catch-links": "^3.10.0",
"gatsby-plugin-force-trailing-slashes": "^1.0.5",
"gatsby-plugin-manifest": "^3.10.0",
"gatsby-plugin-mdx": "^2.10.0",
"gatsby-plugin-no-sourcemaps": "^3.10.0",
"gatsby-plugin-postcss": "^4.10.0",
"gatsby-plugin-remove-serviceworker": "^1.0.0",
"gatsby-plugin-robots-txt": "^1.6.8",
"gatsby-plugin-s3": "^0.3.8",
"gatsby-plugin-sharp": "^3.10.2",
"gatsby-remark-autolink-headers": "^4.7.0",
"gatsby-remark-images": "^5.7.0",
"gatsby-source-filesystem": "^3.10.0",
"husky": "^8.0.2",
"lint-staged": ">=13.1.0",
"markdownlint-cli2": "^0.6.0",
"npm-run-all": "^4.1.3",
"postcss": "^8.3.6",
"prettier": "^2.8.1",
"prettier-plugin-sh": "^0.12.8",
"pretty-quick": "^3.1.3",
"remark-external-links": "^8.0.0",
"sort-package-json": "^2.1.0",
"tailwindcss": "^2.1.4"
},
"volta": {
"node": "16.20.2",
"yarn": "1.22.10"
}
}