-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.61 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
{
"name": "gatsby-blog",
"private": true,
"description": "A starter for Gatsby blog powered by Markdown.",
"version": "0.1.0",
"author": "Marco Biedermann",
"dependencies": {
"@fontsource/montserrat": "^5.1.0",
"clsx": "^2.1.1",
"dayjs": "^1.11.12",
"gatsby": "^5.14.0",
"gatsby-plugin-image": "^3.14.0",
"gatsby-plugin-manifest": "^5.14.0",
"gatsby-plugin-offline": "^6.14.0",
"gatsby-plugin-react-helmet": "^6.14.0",
"gatsby-plugin-sharp": "^5.14.0",
"gatsby-plugin-twitter": "^5.14.0",
"gatsby-remark-autolink-headers": "^6.14.0",
"gatsby-remark-embedder": "^7.0.0",
"gatsby-remark-images": "^7.14.0",
"gatsby-remark-prismjs": "^7.14.0",
"gatsby-remark-responsive-iframe": "^6.14.0",
"gatsby-source-filesystem": "^5.14.0",
"gatsby-transformer-remark": "^6.14.0",
"gatsby-transformer-sharp": "^5.14.0",
"prism-theme-night-owl": "^1.4.0",
"prismjs": "^1.29.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"@testing-library/react": "^15.0.7",
"@types/jest": "^29.5.14",
"@types/react-helmet": "^6.1.11",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "2.7.1",
"stylelint": "^16.11.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-order": "^6.0.4",
"stylelint-selector-bem-pattern": "^4.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"clean": "gatsby clean",
"develop": "gatsby develop",
"format": "prettier --cache --ignore-path .gitignore --write .",
"lint:css": "stylelint --cache --ignore-path .gitignore '**/*.css'",
"lint:js": "eslint --cache --ignore-path .gitignore '**/*.{js,jsx,ts,tsx}'",
"lint": "npm run lint:css && npm run lint:js",
"serve": "gatsby serve",
"start": "npm run develop",
"test": "jest --maxWorkers=50% --watch",
"test:ci": "jest --ci --coverage --runInBand"
},
"repository": {
"type": "git",
"url": "https://github.com/marcobiedermann/gatsby-blog"
},
"bugs": {
"url": "https://github.com/marcobiedermann/gatsby-blog/issues"
}
}