This repository has been archived by the owner on Nov 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 3.22 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
{
"name": "double-slash",
"description": "Double slash podcast website and RSS Flux",
"version": "1.0.0",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"preload-fonts": "gatsby-preload-fonts",
"test": "jest",
"generate:assets": "npm run generate:splash && npm run generate:iconm",
"generate:splash": "pwa-asset-generator --splash-only true --type png --padding 0 --quality 80 --background \"linear-gradient(#ffd800 0%, #ffe800 40.89%, #fee801 61.08%, #f6da05 100%)\" ./static/splash.png ./static/splash",
"generate:iconm": "pwa-asset-generator --maskable true --type png --padding 0 --icon-only true --quality 100 --background \"linear-gradient(#ffd800 0%, #ffe800 40.89%, #fee801 61.08%, #f6da05 100%)\" ./static/round-ready.png -m ./static/manifest.webmanifest ./static/maskable"
},
"dependencies": {
"gatsby": "^2.22.1",
"gatsby-cli": "^2.12.85",
"gatsby-plugin-manifest": "^2.4.14",
"gatsby-plugin-offline": "^3.2.13",
"gatsby-plugin-preact": "^4.0.5",
"gatsby-plugin-preconnect": "^1.1.54",
"gatsby-plugin-preload-fonts": "^1.2.13",
"gatsby-plugin-purgecss": "^5.0.0",
"gatsby-plugin-web-font-loader": "^1.0.4",
"gatsby-remark-prismjs": "^3.5.2",
"gdpr-cookies": "^1.1.0-beta.0",
"js-cookie": "^2.2.1",
"plyr": "^3.6.2",
"preact": "^10.4.4",
"preact-render-to-string": "^5.1.9",
"prismjs": "^1.20.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.0.0",
"url-search-params-polyfill": "^8.1.0",
"use-is-in-viewport": "^1.0.9"
},
"devDependencies": {
"@jlengstorf/get-share-image": "^0.7.1",
"@mdx-js/mdx": "^1.6.1",
"@mdx-js/react": "^1.6.1",
"axios": "^0.21.1",
"crypto": "^1.0.1",
"fs-extra": "^9.0.0",
"gatsby-image": "^2.4.4",
"gatsby-plugin-mdx": "^2.14.1",
"gatsby-plugin-postcss": "^2.3.1",
"gatsby-plugin-react-helmet": "^3.3.1",
"gatsby-plugin-sharp": "^2.6.6",
"gatsby-plugin-sitemap": "^2.4.3",
"gatsby-remark-images": "^3.3.5",
"gatsby-source-filesystem": "^2.3.5",
"gatsby-transformer-remark": "^2.8.13",
"gatsby-transformer-sharp": "^2.5.2",
"gatsby-transformer-yaml": "^2.4.1",
"jest": "^26.4.0",
"postcss-import": "^12.0.1",
"postcss-mixins": "^6.2.3",
"postcss-preset-env": "^6.7.0",
"postcss-scss": "^2.1.1",
"precss": "^4.0.0",
"prettier": "2.0.5",
"rss": "^1.2.2",
"slugify": "^1.4.0"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "<rootDir>/jest/jest-preprocess.js"
},
"moduleNameMapper": {
".+\\.(css|styl|less|sass|scss)$": "identity-obj-proxy",
".+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/file-mock.js"
},
"testPathIgnorePatterns": [
"node_modules",
"\\.cache",
"<rootDir>.*/public"
],
"transformIgnorePatterns": [
"node_modules/(?!(gatsby)/)"
],
"globals": {
"__PATH_PREFIX__": ""
},
"testURL": "http://localhost",
"setupFiles": [
"<rootDir>/jest/loadershim.js"
]
}
}