-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.56 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
79
80
81
82
83
84
85
86
{
"name": "rogerramos.me",
"private": false,
"description": "Front-end of My Website",
"version": "0.14.3",
"author": "Roger Ramos <@rodgerpaulo>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rodgerpaulo/rogerramos.me"
},
"bugs": {
"url": "https://github.com/rodgerpaulo/rogerramos.me/issues"
},
"keywords": [
"gatsby"
],
"scripts": {
"build": "gatsby build",
"build:docker": "docker build -t $npm_package_name:$npm_package_version .",
"develop": "gatsby develop",
"start": "npm run develop",
"serve": "gatsby serve",
"serve:prod": "npm run build && npm run serve",
"serve:docker": "docker run -p 8000:80 $npm_package_name:$npm_package_version",
"format": "prettier --write \"src/**/*.js\"",
"lint-staged": "lint-staged",
"lintjs": "eslint -c .eslintrc src/**/*.js",
"amp": "find public/amp -type f | xargs amphtml-validator",
"test": "npm run amp"
},
"pre-commit": "lint-staged",
"lint-staged": {
"src/**/*.js": [
"eslint",
"git add"
],
"src/**/*.jsx": [
"eslint",
"git add"
]
},
"dependencies": {
"babel-eslint": "^10.0.2",
"babel-plugin-styled-components": "^1.10.6",
"date-fns": "^1.30.1",
"eslint-config-google": "^0.13.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-compat": "^3.3.0",
"eslint-plugin-flowtype": "^3.12.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"gatsby": "^2.13.39",
"gatsby-image": "^2.2.6",
"gatsby-plugin-google-tagmanager": "^2.1.4",
"gatsby-plugin-html2amp": "^1.0.0",
"gatsby-plugin-manifest": "^2.2.4",
"gatsby-plugin-netlify-cms": "^4.1.6",
"gatsby-plugin-offline": "^2.2.4",
"gatsby-plugin-prefetch-google-fonts": "^1.4.3",
"gatsby-plugin-react-helmet": "^3.1.2",
"gatsby-plugin-sharp": "^2.2.9",
"gatsby-plugin-sitemap": "^2.2.3",
"gatsby-plugin-styled-components": "^3.1.2",
"gatsby-remark-prismjs": "^3.3.3",
"gatsby-source-filesystem": "^2.1.6",
"gatsby-transformer-remark": "^2.6.9",
"gatsby-transformer-sharp": "^2.2.4",
"netlify-cms": "^2.9.7",
"pre-commit": "^1.2.2",
"prismjs": "^1.17.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"sharp": "^0.22.1",
"styled-components": "^4.3.2"
},
"devDependencies": {
"amphtml-validator": "^1.0.23",
"lint-staged": "^9.2.1",
"prettier": "^1.18.2"
}
}