-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.03 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.03 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
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "gatsby-typescript-minimal",
"private": true,
"description": "A minimal, bare bones Typescript starter for Gatsby",
"version": "0.1.0",
"author": "@benbarber",
"dependencies": {
"@deckdeckgo/highlight-code": "^1.1.4",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.15",
"@lassiebug/card": "^0.6.1",
"@lassiebug/header": "^0.6.1",
"@lassiebug/input": "0.4.2",
"@lassiebug/styles": "0.4.2",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@react-hook/window-size": "^3.0.7",
"gatsby": "^2.32.13",
"gatsby-image": "^2.11.0",
"gatsby-plugin-google-gtag": "^3.13.0",
"gatsby-plugin-mdx": "^1.10.1",
"gatsby-plugin-robots-txt": "^1.6.10",
"gatsby-remark-embed-video": "^3.1.1",
"gatsby-remark-embedder": "^2.1.2",
"gatsby-remark-highlight-code": "^1.4.7",
"gatsby-remark-images": "^3.11.1",
"gatsby-remark-responsive-iframe": "^2.11.0",
"gatsby-transformer-remark": "^2.16.1",
"moment": "^2.29.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-helmet": "^5.2.1",
"react-lorem-ipsum": "^1.4.9",
"react-spring": "^8.0.27",
"styled-components": "^4.1.3",
"styled-normalize": "^8.0.6"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@types/react": "^16.14.15",
"@types/react-dom": "^16.9.14",
"@types/react-helmet": "^5.0.17",
"@types/styled-components": "^4.1.12",
"@typescript-eslint/eslint-plugin-tslint": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"babel-plugin-styled-components": "^1.13.2",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-prettier": "^3.4.1",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-manifest": "^2.12.1",
"gatsby-plugin-offline": "^3.10.2",
"gatsby-plugin-react-helmet": "^3.10.0",
"gatsby-plugin-sharp": "^2.14.4",
"gatsby-plugin-sitemap": "^2.12.0",
"gatsby-plugin-styled-components": "^3.10.0",
"gatsby-plugin-typescript": "^2.12.1",
"gatsby-source-filesystem": "^2.11.1",
"gatsby-transformer-sharp": "^2.12.1",
"prettier": "1.19.1",
"tslint": "^5.14.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^4.0.0",
"typescript": "^3.9.10"
},
"keywords": [
"gatsby",
"typescript",
"minimal",
"starter",
"styled-components"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,ts,tsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"lint": "eslint ./src --fix --ext .js,.jsx,.ts,.tsx",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
},
"repository": {
"type": "git",
"url": "https://github.com/benbarber/gatsby-typescript-minimal"
},
"bugs": {
"url": "https://github.com/benbarber/gatsby-typescript-minimal/issues"
}
}