-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.64 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.64 KB
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
{
"name": "ulrich-block",
"private": true,
"description": "Sources of https://www-ulrich-block.de",
"version": "1.0.0",
"author": "Ulrich Block <ich@ulrich-block.de>",
"bugs": {
"url": "https://github.com/ulrichblock/www.ulrich-block.de/issues"
},
"dependencies": {
"@gatsby-contrib/gatsby-plugin-elasticlunr-search": "^3.0.2",
"bootstrap": "^5.0.2",
"emotion": "^10.0.27",
"gatsby": "^3.10.2",
"gatsby-plugin-image": "^1.10.1",
"gatsby-plugin-canonical-urls": "^3.10.0",
"gatsby-plugin-copy-files": "^1.0.3",
"gatsby-plugin-eslint": "^3.0.0",
"gatsby-plugin-feed": "^3.10.0",
"gatsby-plugin-offline": "^4.10.0",
"gatsby-plugin-purgecss": "^6.0.2",
"gatsby-plugin-react-helmet": "^4.10.0",
"gatsby-plugin-robots-txt": "^1.6.8",
"gatsby-plugin-sass": "^4.10.0",
"gatsby-plugin-sharp": "^3.10.2",
"gatsby-plugin-sitemap": "^4.6.0",
"gatsby-plugin-typescript": "^3.10.0",
"gatsby-plugin-typescript-checker": "^1.1.1",
"gatsby-remark-copy-linked-files": "^4.7.0",
"gatsby-remark-external-links": "0.0.4",
"gatsby-remark-images": "^5.7.0",
"gatsby-remark-prismjs": "^5.7.0",
"gatsby-source-filesystem": "^3.10.0",
"gatsby-transformer-remark": "^4.7.0",
"gatsby-transformer-sharp": "^3.10.0",
"prismjs": "^1.20.0",
"react": "^17.0.2",
"react-bootstrap": "^1.0.1",
"react-custom-share": "^0.4.8",
"react-dom": "^17.0.2",
"react-helmet": "^6.0.0",
"react-icons": "^4.2.0",
"ts-node": "^10.1.0"
},
"devDependencies": {
"@types/elasticlunr": "^0.9.0",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"@types/react-helmet": "^6.1.2",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-webpack-plugin": "^3.0.1",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-prettier": "^3.4.0",
"gatsby-plugin-webpack-bundle-analyser-v2": "^1.1.10",
"node-sass": "^6.0.1",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
},
"homepage": "https://www.ulrich-block.de/",
"keywords": [
"gatsby"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ulrichblock/www.ulrich-block.de.git"
},
"scripts": {
"build": "gatsby build",
"develop": "rm -rf .cache && gatsby develop",
"format": "prettier --write \"src/**/*.{ts,tsx}\" \"*.js\"",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\"",
"tsc": "tsc --noEmit",
"lint": "eslint *.js src/ --ext .js,.jsx,.ts,.tsx --fix"
}
}