-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2 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
{
"name": "wouterbles.com",
"description": "My personal site built with GatsbyJS",
"repository": "https://github.com/wouterbles/wouterbles.com",
"author": "Wouter Bles",
"dependencies": {
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.3.0",
"babel-plugin-styled-components": "^1.12.0",
"gatsby": "^3.4.0",
"gatsby-awesome-pagination": "^0.3.8",
"gatsby-image": "^3.4.0",
"gatsby-plugin-catch-links": "^3.4.0",
"gatsby-plugin-emotion": "^6.4.0",
"gatsby-plugin-google-gtag": "^3.4.0",
"gatsby-plugin-manifest": "^3.4.0",
"gatsby-plugin-netlify": "^3.4.0",
"gatsby-plugin-offline": "^4.4.0",
"gatsby-plugin-react-helmet": "^4.4.0",
"gatsby-plugin-schema-snapshot": "^2.4.0",
"gatsby-plugin-sitemap": "^4.0.0",
"gatsby-plugin-theme-ui": "^0.7.5",
"gatsby-remark-autolink-headers": "^4.1.0",
"gatsby-remark-images-contentful": "^4.1.0",
"gatsby-remark-smartypants": "^4.1.0",
"gatsby-source-contentful": "^5.4.0",
"gatsby-transformer-remark": "^4.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"theme-ui": "^0.7.5"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"develop": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"test": "npm run lint:css && npm run lint:js && npm run check-pretty",
"setup": "node ./bin/setup.js",
"lint:js": "eslint --ext .js,.jsx .",
"lint:css": "stylelint 'src/**/*.js'",
"check-pretty": "prettier --list-different {,src/**/}*.{js,jsx,json,css,scss}",
"format": "prettier --write \"src/**/*.js\"",
"clean": "gatsby clean"
},
"devDependencies": {
"eslint": "^7.25.0",
"eslint-config-gatsby-standard": "^3.0.2",
"prettier": "^2.2.1",
"stylelint": "^13.9.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^22.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0"
}
}