-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.32 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.32 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "good-data-movement.github.io",
"version": "0.1.0",
"description": "Gatsby v2 website!",
"main": "index.js",
"scripts": {
"deploy": "gatsby build && gh-pages -d public -b master",
"build": "gatsby build",
"develop": "gatsby develop",
"clean": "gatsby clean && rm -rf docs",
"start": "npm run develop",
"lint": "eslint ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/good-data-movement/good-data-movement.github.io.git"
},
"keywords": [
"gatsby",
"good-data-movement",
"personal-data"
],
"author": "@ps-george",
"license": "MIT",
"bugs": {
"url": "https://github.com/good-data-movement/good-data-movement.github.io/issues"
},
"homepage": "https://github.com/good-data-movement/manifesto#readme",
"dependencies": {
"@babel/core": "^7.5.5",
"@emotion/core": "^10.0.15",
"@emotion/styled": "^10.0.15",
"@fortawesome/fontawesome-svg-core": "^1.2.21",
"@fortawesome/free-brands-svg-icons": "^5.10.1",
"@fortawesome/free-solid-svg-icons": "^5.10.1",
"@fortawesome/react-fontawesome": "^0.1.4",
"emotion-theming": "^10.0.14",
"gatsby": "^2.13.53",
"gatsby-image": "^2.2.8",
"gatsby-plugin-emotion": "^4.1.2",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-manifest": "^2.2.5",
"gatsby-plugin-offline": "^2.2.5",
"gatsby-plugin-react-helmet": "^3.1.3",
"gatsby-source-filesystem": "^2.1.9",
"gatsby-transformer-remark": "^2.6.11",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-headroom": "^2.2.8",
"react-helmet": "^5.2.1",
"react-markdown": "^4.1.0",
"react-reveal": "^1.2.2",
"react-scroll-section": "^1.3.0",
"react-text-loop": "^2.0.2",
"react-tippy": "^1.2.3",
"rebass": "^4.0.2"
},
"devDependencies": {
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.12.3",
"gh-pages": "^2.1.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"prettier": "^1.18.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}