-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
53 lines (53 loc) · 1.47 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
{
"name": "simple-resume",
"private": true,
"description": "Simple resume",
"version": "0.1.0",
"author": "yoon.homme <woosiks.io@gmail.com>",
"dependencies": {
"@types/react-helmet": "^5.0.9",
"@types/react-linkify": "^0.2.0",
"@types/styled-components": "^4.1.18",
"babel-preset-gatsby": "^1.0.0",
"gatsby": "^3.0.3",
"gatsby-image": "^3.0.0",
"gatsby-plugin-manifest": "^3.0.0",
"gatsby-plugin-offline": "^3.0.0",
"gatsby-plugin-react-helmet": "^4.0.0",
"gatsby-plugin-sharp": "^3.0.0",
"gatsby-plugin-typescript": "^3.0.0",
"gatsby-source-filesystem": "^3.0.0",
"gatsby-transformer-sharp": "^3.0.0",
"gatsby-transformer-yaml": "^3.0.0",
"prop-types": "^15.7.2",
"react": "^17.0.0",
"react-dom": "^16.9.0",
"react-helmet": "^5.2.1",
"react-icons": "^3.7.0",
"react-linkify": "^1.0.0-alpha",
"styled-components": "^4.3.2",
"typescript": "^3.5.3"
},
"devDependencies": {
"prettier": "^1.18.2"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/simple-resume"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}