forked from bchiang7/v4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.7 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
{
"name": "v4",
"description": "Personal Website V4",
"version": "1.0.0",
"author": "Brittany Chiang <brittany.chiang@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/bchiang7/v4"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write 'src/**/*.js'",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "gatsby develop",
"precommit": "pretty-quick --staged && lint-staged"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"animejs": "^2.2.0",
"babel-plugin-styled-components": "^1.5.1",
"gatsby": "^1.9.277",
"gatsby-image": "^1.0.55",
"gatsby-link": "^1.6.46",
"gatsby-plugin-netlify": "^1.0.21",
"gatsby-plugin-react-helmet": "^2.0.11",
"gatsby-plugin-sharp": "^1.6.48",
"gatsby-plugin-sitemap": "^1.2.25",
"gatsby-plugin-styled-components": "^2.0.11",
"gatsby-remark-external-links": "0.0.4",
"gatsby-remark-images": "^1.5.67",
"gatsby-source-filesystem": "^1.5.39",
"gatsby-transformer-remark": "^1.7.44",
"gatsby-transformer-sharp": "^1.6.27",
"prop-types": "^15.6.2",
"react-anchor-link-smooth-scroll": "^1.0.11",
"react-helmet": "^5.2.0",
"styled-components": "^3.4.2"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"eslint": "^5.3.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.11.1",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"prettier": "^1.14.2",
"pretty-quick": "^1.6.0"
}
}