This repository has been archived by the owner. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.66 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
94
95
{
"name": "sboh.dev",
"description": "Personal Site for Seungbin Oh",
"version": "2002.12.14",
"license": "MIT",
"scripts": {
"start": "gatsby develop",
"build": "gatsby build",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"lint": "eslint ./src --fix --ext .js,.jsx,.ts,.tsx",
"tsc": "tsc --noEmit",
"test": "jest",
"coverage": "jest --coverage",
"clean": "gatsby clean"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run lint && npm run tsc"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@chakra-ui/gatsby-plugin": "^1.0.2",
"@chakra-ui/icons": "^1.0.8",
"@chakra-ui/react": "^1.4.2",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"framer-motion": "^4.1.2",
"gatsby": "^3.2.1",
"gatsby-plugin-canonical-urls": "^3.2.0",
"gatsby-plugin-google-tagmanager": "^3.2.0",
"gatsby-plugin-manifest": "^3.2.0",
"gatsby-plugin-offline": "^4.2.0",
"gatsby-plugin-react-helmet": "^4.2.0",
"gatsby-plugin-remove-trailing-slashes": "^3.2.0",
"gatsby-plugin-robots-txt": "^1.5.5",
"gatsby-plugin-sharp": "^3.2.0",
"gatsby-plugin-sitemap": "^3.2.0",
"gatsby-plugin-typescript": "^3.2.0",
"i18next": "^20.2.1",
"prismjs": "^1.23.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-i18next": "^11.8.12",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"devDependencies": {
"@babel/preset-typescript": "^7.13.0",
"@testing-library/react": "^11.2.6",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/react-helmet": "^6.1.0",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"babel-jest": "^26.6.3",
"babel-preset-gatsby": "^1.2.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.6.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.8",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1"
},
"author": {
"name": "Seungbin Oh",
"email": "[email protected]",
"url": "https://sboh.dev"
},
"keywords": [
"gatsby",
"react",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/sboh1214/blog.sboh.dev.git"
},
"bugs": {
"url": "https://github.com/sboh1214/blog.sboh.dev/issues",
"email": "[email protected]"
}
}