-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.83 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.83 KB
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
{
"private": true,
"name": "kevinwolf",
"description": "Kevin Wolf personal portfolio site.",
"license": "MIT",
"scripts": {
"develop": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"precommit": "lint-staged",
"lint": "eslint ."
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.0-14",
"@fortawesome/free-brands-svg-icons": "^5.2.0",
"@fortawesome/free-solid-svg-icons": "^5.1.0-11",
"@fortawesome/react-fontawesome": "^0.1.0-11",
"confetti-js": "^0.0.12",
"emotion": "^9.2.6",
"emotion-server": "^9.2.6",
"gatsby": "^2.0.0-beta.98",
"gatsby-image": "^2.0.0-beta.7",
"gatsby-plugin-emotion": "^2.0.0-beta.3",
"gatsby-plugin-manifest": "^2.0.2-beta.5",
"gatsby-plugin-offline": "^2.0.0-beta.9",
"gatsby-plugin-react-helmet": "^3.0.0-beta.4",
"gatsby-plugin-sharp": "^2.0.0-beta.7",
"gatsby-plugin-typography": "^2.2.0-beta.3",
"gatsby-source-filesystem": "^2.0.1-beta.10",
"gatsby-transformer-remark": "^2.1.1-beta.6",
"gatsby-transformer-sharp": "^2.1.1-beta.6",
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-emotion": "^9.2.6",
"react-helmet": "^5.2.0",
"react-typography": "^0.16.13",
"typography": "^0.16.17",
"typography-theme-alton": "^0.15.10"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"eslint": "^5.3.0",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-react": "^6.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-standard": "^3.1.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.2"
}
}