-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 3.04 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": "aerobatic-website-gatsby",
"description": "The www.aerobatic.com website built with Gatsby",
"version": "1.0.0",
"private": true,
"author": "David Von Lehman <[email protected]>",
"scripts": {
"build": "NODE_ENV=production gatsby build",
"clean": "rimraf public",
"dev": "NODE_ENV=development gatsby develop --port 4000",
"format": "prettier --write \"src/**/*.{ts,tsx,md}\"",
"lint": "tslint 'src/**/*.{ts,tsx}' -p tsconfig.json",
"start": "npm run dev",
"test": "npm run type-check",
"type-check": "tsc --noEmit",
"rename-mdx": "(cd src/content/blog; for f in *.md; do mv $f `basename $f .md`.mdx; done;)"
},
"engines": {
"node": "12"
},
"dependencies": {
"@babel/core": "^7.0.0",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@mdx-js/mdx": "^1.6.5",
"@mdx-js/react": "^1.0.0",
"@mdx-js/tag": "^0.20.3",
"@types/react-modal": "^3.10.5",
"babel-plugin-styled-components": "^1.10.7",
"classnames": "^2.2.6",
"emotion": "^10.0.27",
"emotion-server": "^10.0.27",
"gatsby": "^2.22.13",
"gatsby-image": "^2.4.5",
"gatsby-link": "^2.4.3",
"gatsby-plugin-canonical-urls": "^2.3.2",
"gatsby-plugin-catch-links": "^2.3.3",
"gatsby-plugin-emotion": "^4.3.2",
"gatsby-plugin-feed": "^2.5.3",
"gatsby-plugin-google-analytics": "^2.3.2",
"gatsby-plugin-manifest": "^2.4.9",
"gatsby-plugin-mdx": "^1.2.13",
"gatsby-plugin-offline": "^3.2.7",
"gatsby-plugin-react-helmet": "^3.3.2",
"gatsby-plugin-sharp": "^2.6.9",
"gatsby-plugin-sitemap": "^2.4.3",
"gatsby-plugin-styled-components": "^3.3.2",
"gatsby-plugin-typescript": "^2.4.3",
"gatsby-remark-copy-linked-files": "^2.3.3",
"gatsby-remark-images": "^3.3.8",
"gatsby-source-filesystem": "^2.3.8",
"gatsby-transformer-json": "^2.4.3",
"gatsby-transformer-remark": "^2.8.13",
"gatsby-transformer-sharp": "^2.5.3",
"github-slugger": "^1.3.0",
"graphql": "^14.4.1",
"lodash-es": "^4.17.15",
"modern-normalize": "^0.6.0",
"normalize.css": "^8.0.1",
"polished": "^3.6.4",
"prism-themes": "^1.4.0",
"prismjs": "^1.20.0",
"react": "^16.13.1",
"react-anchor-link-smooth-scroll": "^1.0.12",
"react-dom": "^16.13.1",
"react-emotion": "^10.0.0",
"react-helmet": "^6.0.0",
"react-is": "^16.13.1",
"react-syntax-highlighter": "^12.2.1",
"styled-components": "^5.1.1",
"typescript": "^3.9.3"
},
"devDependencies": {
"@types/classnames": "^2.2.10",
"@types/lodash-es": "^4.17.3",
"@types/node": "^14.0.6",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-helmet": "^6.0.0",
"@types/react-syntax-highlighter": "^11.0.4",
"@types/styled-components": "^5.1.0",
"babel-plugin-emotion": "^10.0.33",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"tslint": "^6.1.2",
"tslint-config-blvd": "^1.2.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0"
},
"resolutions": {
"graphql": "14.1.1"
}
}