-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.02 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
96
97
98
99
100
101
102
{
"name": "vertical-latency",
"description": "Personal site for Keith Ort",
"version": "3.1.0",
"author": "Keith Ort <keithort@gmail.com>",
"bugs": {
"url": "https://github.com/keithort/VerticalLatency/issues"
},
"dependencies": {
"@emotion/core": "^10.0.0",
"@emotion/styled": "^10.0.0",
"@fortawesome/fontawesome-svg-core": "^1.2.0",
"@fortawesome/free-brands-svg-icons": "^5.15.0",
"@fortawesome/free-solid-svg-icons": "^5.15.0",
"@fortawesome/react-fontawesome": "^0.1.0",
"color": "^3.1.0",
"emotion-theming": "^10.0.0",
"gatsby": "^2.28.0",
"gatsby-cli": "^2.15.0",
"gatsby-image": "^2.7.0",
"gatsby-plugin-emotion": "^4.3.0",
"gatsby-plugin-eslint": "^2.0.0",
"gatsby-plugin-manifest": "^2.4.0",
"gatsby-plugin-offline": "^3.2.0",
"gatsby-plugin-postcss": "^2.3.0",
"gatsby-plugin-purgecss": "^5.0.0",
"gatsby-plugin-react-helmet": "^3.3.0",
"gatsby-plugin-sharp": "^2.6.0",
"gatsby-plugin-transition-link": "^1.20.0",
"gatsby-plugin-typescript": "^2.4.0",
"gatsby-plugin-web-font-loader": "^1.0.0",
"gatsby-remark-color-highlight": "^1.0.2",
"gatsby-remark-copy-linked-files": "^2.3.0",
"gatsby-remark-images": "^3.3.0",
"gatsby-remark-smartypants": "^2.3.0",
"gatsby-source-filesystem": "^2.3.0",
"gatsby-transformer-remark": "^2.8.0",
"gatsby-transformer-sharp": "^2.5.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"@types/color": "^3.0.0",
"@types/react": "^17.0.21",
"@types/react-dom": "^17.0.9",
"@types/react-helmet": "^6.1.0",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"autoprefixer": "^9.8.0",
"babel-eslint": "^10.1.0",
"babel-plugin-styled-components": "^1.11.0",
"cssnano": "^4.1.0",
"eslint": "^7.6.0",
"eslint-config-react-app": "^5.2.0",
"eslint-loader": "^4.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.0",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.0",
"husky": "^4.2.0",
"lint-staged": "^10.2.0",
"prettier": "^1.19.0",
"typescript": "^3.9.0"
},
"keywords": [
"gatsby",
"typescript"
],
"license": "MIT",
"scripts": {
"type-check": "tsc --noEmit",
"lint": "eslint . --ext ts,tsx",
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md,ts,tsx}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/keithort/VerticalLatency/"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
}
}