-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.32 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "gatsby-cms",
"description": "A starter for a landing page powered by Gatsby, Grommet, and Markdown",
"version": "0.1.0",
"author": "Alex Mejias",
"bugs": {
"url": "https://github.com/karatechops/gatsby-cms/issues"
},
"dependencies": {
"@babel/core": "^7.0.0-0",
"babel-plugin-styled-components": "^1.10.0",
"gatsby": "^2.8.5",
"gatsby-image": "^2.1.2",
"gatsby-plugin-feed": "^2.2.2",
"gatsby-plugin-google-analytics": "^2.0.20",
"gatsby-plugin-manifest": "^2.1.1",
"gatsby-plugin-netlify-cms": "^4.0.1",
"gatsby-plugin-react-helmet": "^3.0.12",
"gatsby-plugin-sharp": "^2.1.3",
"gatsby-plugin-styled-components": "^3.0.7",
"gatsby-remark-copy-linked-files": "^2.0.13",
"gatsby-remark-images": "^3.0.14",
"gatsby-remark-prismjs": "^3.2.10",
"gatsby-remark-responsive-iframe": "^2.1.1",
"gatsby-remark-smartypants": "^2.0.9",
"gatsby-source-filesystem": "^2.0.38",
"gatsby-transformer-remark": "^2.3.12",
"gatsby-transformer-sharp": "^2.1.21",
"grommet": "^2.7.1",
"grommet-icons": "^4.2.0",
"netlify-cms-app": "^2.9.1",
"prismjs": "^1.16.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"styled-components": "^4.3.1"
},
"devDependencies": {
"babel-jest": "^24.8.0",
"babel-preset-gatsby": "^0.2.1",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"husky": "^3.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.8.0",
"prettier": "^1.18.0",
"react-test-renderer": "^16.8.6"
},
"homepage": "https://github.com/karatechops/gatsby-cms/blob/master/README.md",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/karatechops/gatsby-cms.git"
},
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "yarn eslint ./ && yarn test"
}
}
}