-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.88 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.88 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
{
"name": "willgriffiths.github.io",
"description": "A playground for frontend experiments.",
"version": "1.0.0",
"author": "Will Griffiths",
"dependencies": {
"babel-plugin-styled-components": "^1.8.0",
"gatsby": "^2.0.34",
"gatsby-plugin-google-fonts": "^0.0.4",
"gatsby-plugin-react-helmet": "^3.0.1",
"gatsby-plugin-styled-components": "^3.0.1",
"polished": "^2.3.0",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-helmet": "^5.2.0",
"styled-components": "^4.0.0"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write 'src/**/*.js'",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"precommit": "yarn test --changedSince=develop",
"prepush": "yarn test",
"deploy": "yarn precommit && gatsby build --prefix-paths && gh-pages -d public -b master"
},
"devDependencies": {
"eslint": "^4.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-loader": "2.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "2.7.0",
"eslint-plugin-react": "^7.11.1",
"gatsby-plugin-eslint-v2": "^2.0.0-beta.0",
"gatsby-source-filesystem": "^2.0.6",
"gatsby-transformer-remark": "^2.1.11",
"gh-pages": "^1.2.0",
"husky": "^0.14.3",
"jest": "^23.1.0",
"jest-runner-eslint": "^0.7.1",
"prettier": "^1.14.3",
"webpack": "^4.23.1"
},
"jest": {
"runner": "jest-runner-eslint",
"displayName": "lint",
"testMatch": [
"<rootDir>/src/**/*.js"
],
"watchPlugins": [
"jest-runner-eslint/watch-fix"
]
},
"repository": {
"type": "git",
"url": "https://github.com/willgriffiths/willgriffiths.github.io"
}
}