This repository has been archived by the owner on Apr 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.15 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
{
"name": "traces-of-light",
"description": "Trace of Light",
"version": "1.0.0",
"author": "Alejandro Hernández Cobo <[email protected]>",
"dependencies": {
"classnames": "^2.2.6",
"eslint-loader": "^2.1.1",
"gatsby": "^2.0.0",
"gatsby-image": "^2.0.7",
"gatsby-link": "^2.0.2",
"gatsby-paginate": "^1.0.16",
"gatsby-plugin-eslint": "^2.0.1",
"gatsby-plugin-google-analytics": "^2.0.6",
"gatsby-plugin-manifest": "^2.0.2",
"gatsby-plugin-netlify": "^2.0.0",
"gatsby-plugin-offline": "^2.0.5",
"gatsby-plugin-react-css-modules": "^2.0.0",
"gatsby-plugin-react-helmet": "^3.0.0",
"gatsby-plugin-sass": "^2.0.1",
"gatsby-plugin-sharp": "^2.0.5",
"gatsby-plugin-web-font-loader": "^1.0.4",
"gatsby-source-filesystem": "^2.0.1",
"gatsby-transformer-json": "^2.1.2",
"gatsby-transformer-sharp": "^2.1.1",
"node-sass": "^4.9.3",
"prop-types": "^15.6.2",
"react": "^16.5.1",
"react-dom": "^16.5.1",
"react-helmet": "^5.2.0",
"slugify": "^1.3.1"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"clean": "rm -rf ./.cache ./public",
"develop": "gatsby develop",
"lint": "yarn lint:code && yarn lint:styles",
"lint:code": "eslint --cache --format=node_modules/eslint-formatter-pretty .",
"lint:styles": "stylelint 'src/**/*.scss' --syntax scss",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.6.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-formatter-pretty": "^1.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"prettier": "^1.14.2",
"stylelint": "^9.5.0",
"stylelint-config-recommended": "^2.1.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-order": "^1.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}