-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.35 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
{
"name": "gtangelo-portfolio",
"private": true,
"description": "My personal portfolio website",
"version": "0.1.0",
"author": "Gabriel Ting <[email protected]>",
"dependencies": {
"@material-ui/core": "^4.12.3",
"@types/react-scroll": "^1.8.3",
"babel-plugin-styled-components": "^1.13.2",
"framer-motion": "^4.1.17",
"gatsby": "^3.11.1",
"gatsby-plugin-image": "^1.11.0",
"gatsby-plugin-react-helmet": "^4.11.0",
"gatsby-plugin-root-import": "^2.0.7",
"gatsby-plugin-sharp": "^3.11.0",
"gatsby-plugin-styled-components": "^4.12.0",
"gatsby-plugin-typescript": "^3.11.0",
"gatsby-source-filesystem": "^3.11.0",
"gatsby-theme-material-ui": "^2.0.1",
"gatsby-transformer-sharp": "^3.11.0",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-icons": "^4.2.0",
"react-scroll": "^1.8.4",
"styled-components": "^5.3.0",
"typescript": "^4.3.5",
"typewriter-effect": "^2.18.0"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^17.0.17",
"@types/react-dom": "^17.0.9",
"@types/styled-components": "^5.1.12",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"eslint": "7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"gatsby-plugin-eslint": "^3.0.0",
"gh-pages": "^3.2.3",
"prettier": "^2.3.2"
},
"keywords": [
"gatsby"
],
"license": "0BSD",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"start": "yarn develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"deploy": "gatsby build && gh-pages -d public",
"lint": "eslint src/**/*.{ts,tsx}",
"lint:fix": "eslint --fix src/**/*.{ts,tsx}",
"format": "prettier --write 'src/**/*.{ts,tsx,css,json,md}' && eslint --fix src/**/*.{ts,tsx}"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}