-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
59 lines (59 loc) · 1.63 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
{
"name": "dona-rita-website",
"description": "Dona Rita Website",
"version": "1.0.0",
"author": "Pedro Duarte <contact@peduarte.com>",
"main": "n/a",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"diff": "prettier --config .prettierrc --list-different \"src/**/*.js\"",
"format": "prettier --config .prettierrc --write \"src/**/*.js\"",
"test": "eslint .",
"precommit": "lint-staged",
"prepush": "yarn test"
},
"dependencies": {
"gatsby": "^2.0.44",
"gatsby-plugin-layout": "^1.0.8",
"gatsby-plugin-netlify": "^2.0.4",
"gatsby-plugin-netlify-cms": "^3.0.7",
"gatsby-plugin-nprogress": "^2.0.6",
"gatsby-plugin-react-helmet": "^3.0.1",
"gatsby-plugin-sass": "^2.0.4",
"gatsby-source-filesystem": "^2.0.8",
"gatsby-transformer-json": "^2.1.5",
"gatsby-transformer-remark": "^2.1.12",
"netlify-cms": "^2.1.3",
"node-sass": "^4.10.0",
"query-string": "^6.2.0",
"react": "^16.6.1",
"react-dom": "^16.6.1",
"react-ga": "^2.5.3",
"react-helmet": "^5.2.0",
"react-load-script": "^0.0.6",
"react-typist": "^2.0.4",
"react-visibility-sensor": "^5.0.2"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --config .prettierrc --write",
"git add"
]
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.8.0",
"eslint-config-fbjs": "^2.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-babel": "^5.2.1",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-relay": "^0.0.28",
"husky": "^1.1.3",
"lint-staged": "^8.0.4",
"prettier": "^1.15.1"
}
}