-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.79 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
{
"name": "gatsby-starter-default",
"description": "Gatsby default starter",
"version": "1.0.0",
"author": "Kyle Mathews <[email protected]>",
"dependencies": {
"babel-plugin-styled-components": "^1.5.1",
"bulma": "^0.6.2",
"gatsby": "^1.9.241",
"gatsby-link": "^1.6.39",
"gatsby-plugin-manifest": "^1.0.19",
"gatsby-plugin-react-helmet": "^2.0.8",
"gatsby-plugin-sass": "^1.0.25",
"gatsby-plugin-styled-components": "^2.0.11",
"gh-pages": "^1.1.0",
"react-helmet": "^5.2.0",
"styled-components": "^3.2.5"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "rm -rf public && gatsby build",
"develop": "gatsby develop",
"format": "prettier --write 'src/**/*.js'",
"test": "echo \"Error: no test specified\" && exit 1",
"lint:css": "NODE_ENV=development stylelint './src/**/*.js'",
"lint:js": "NODE_ENV=development eslint './src/**/*.js' --ignore-path .gitignore",
"lint": "yarn lint:css && yarn lint:js"
},
"devDependencies": {
"babel-eslint": "8.0.1",
"babel-plugin-module-resolver": "^3.0.0",
"eslint": "4.9.0",
"eslint-config-prettier": "^2.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-import-resolver-babel-module": "^4.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^21.2.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "7.4.0",
"eslint-plugin-standard": "^3.0.1",
"prettier": "^1.11.1",
"prettier-standard": "^7.0.1",
"stylelint": "^8.0.0",
"stylelint-config-standard": "^17.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.0.0"
}
}