This repository has been archived by the owner on Jul 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.74 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
{
"name": "beleap-blog",
"description": "BeLeap blog built with gatsby",
"version": "1.0.0",
"private": true,
"author": "Changseo Jang <[email protected]>",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"build": "gatsby build",
"clean": "rimraf public",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"dev": "gatsby develop",
"format": "prettier --write \"src/**/*.{ts,tsx,md}\"",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"start": "npm run dev",
"test": "npm run type-check && npm run lint",
"type-check": "tsc"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"@emotion/core": "^10.0.10",
"@emotion/styled": "^10.0.12",
"@fontsource/roboto": "^4.5.3",
"@gatsby-contrib/gatsby-plugin-elasticlunr-search": "^3.0.2",
"babel-plugin-styled-components": "^1.10.1",
"classnames": "^2.2.6",
"cross-env": "^7.0.3",
"elasticlunr": "^0.9.5",
"false": "^0.0.4",
"gatsby": "^3.8.1",
"gatsby-image": "^2.2.1",
"gatsby-plugin-canonical-urls": "^2.1.0",
"gatsby-plugin-emotion": "^4.1.0",
"gatsby-plugin-image": "^2.4.0",
"gatsby-plugin-manifest": "^4.4.0",
"gatsby-plugin-offline": "^4.8.0",
"gatsby-plugin-react-helmet": "^3.1.0",
"gatsby-plugin-sharp": "^4.4.0",
"gatsby-plugin-sitemap": "^4.4.0",
"gatsby-plugin-typescript": "^2.1.0",
"gatsby-remark-copy-linked-files": "^2.1.0",
"gatsby-remark-images": "^3.1.0",
"gatsby-remark-images-contentful": "^5.4.0",
"gatsby-remark-prismjs": "^3.3.0",
"gatsby-remark-responsive-iframe": "^2.2.0",
"gatsby-remark-smartypants": "^2.1.0",
"gatsby-source-contentful": "^7.2.0",
"gatsby-source-filesystem": "^2.1.0",
"gatsby-transformer-json": "^2.2.0",
"gatsby-transformer-remark": "^2.5.0",
"gatsby-transformer-sharp": "^4.4.0",
"gatsby-transformer-sqip": "^4.4.0",
"modern-normalize": "^0.5.0",
"normalize.css": "^8.0.1",
"polished": "^3.4.1",
"prism-themes": "^1.1.0",
"prismjs": "^1.27.0",
"react": "^17.0.2",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"react-icons": "^4.2.0",
"sharp": "^0.30.5",
"typescript": "^3.5.2"
},
"devDependencies": {
"@types/classnames": "^2.2.8",
"@types/elasticlunr": "^0.9.1",
"@types/node": "^12.0.10",
"@types/react": "^17.0.11",
"@types/react-dom": "^16.8.4",
"@types/react-helmet": "^5.0.8",
"@typescript-eslint/eslint-plugin": "^2.6.0",
"@typescript-eslint/parser": "^2.6.0",
"eslint": "^6.6.0",
"eslint-config-blvd": "^1.0.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"gh-pages": "^2.0.1",
"prettier": "^1.18.2",
"rimraf": "^2.6.3"
}
}