-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.96 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
{
"name": "gatsby-starter-default",
"description": "Gatsby default starter",
"version": "1.0.0",
"author": "Kyle Mathews <[email protected]>",
"dependencies": {
"gatsby": "^1.9.119",
"gatsby-link": "^1.6.28",
"gatsby-plugin-react-helmet": "^1.0.8",
"gatsby-plugin-sass": "^1.0.26"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"clean": "rm -rf public",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write \"src/**/*.js\"",
"test": "echo \"Error: no test specified\" && exit 1",
"lint:js": "eslint --ext .js,.jsx --ignore-pattern public,static .",
"psi": "psi pastanaga.io --threshold 99; true",
"webpagetest": "webpagetest test https://pastanaga.io -k $WEBPAGETEST_TOKEN --poll --specs testspecs.json --reporter spec; true",
"webpagetest:ci": "webpagetest test https://pastanaga.io -k $WEBPAGETEST_TOKEN --poll --specs testspecs.json --reporter xunit > performance.xml || true",
"lighthouse": "node_modules/lighthouse/lighthouse-cli/index.js --output-path=./lighthouse-report.html --quiet --chrome-flags='--headless' https://pastanaga.io --view",
"lighthouse:ci": "node_modules/lighthouse/lighthouse-cli/index.js --output-path=./lighthouse-report.html --quiet --chrome-flags='--headless' https://pastanaga.io"
},
"devDependencies": {
"eslint": "^4.12.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"gatsby-plugin-typography": "^1.7.10",
"lighthouse": "2.7.0",
"prettier": "^1.10.2",
"psi": "3.0.0",
"stylelint": "^8.3.1",
"stylelint-config-standard": "^18.0.0",
"webpagetest": "0.3.8"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
},
"stylelint": {
"extends": "stylelint-config-standard"
}
}