This repository has been archived by the owner on Jan 22, 2022. It is now read-only.
forked from gatsbyjs/gatsby-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.27 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
{
"name": "ttraulsen-gatsby",
"LICENSE": "MIT",
"repository": "https://github.com/ttraulsen/gatsby-docker",
"author": "Timo Traulsen <timo.traulsen@gmail.com>",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "rm -rf public && gatsby build",
"dev": "nodemon --legacy-watch --watch gatsby-config.js --watch gatsby-node.js --watch package.json --exec 'gatsby develop --host 0.0.0.0'",
"eslint": "eslint . --ignore-path .gitignore --ext .js,.jsx",
"format": "prettier --ignore-path .gitignore --write '**/*.js'",
"lint": "yarn run eslint",
"lint-ci": "yarn run lint"
},
"devDependencies": {
"eslint-config-airbnb": "^18.2.0",
"eslint_d": "^7.3.0",
"nodemon": "^2.0.4",
"prettier": "^1.19.1"
},
"dependencies": {
"@babel/core": "^7.9.0",
"@emotion/core": "^10.0.28",
"@types/react": "^16.9.34",
"chokidar": "^3.4.3",
"eslint": "^7.4.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.6",
"gatsby": "^2.24.1",
"gatsby-cli": "^2.10.2",
"gatsby-image": "^2.3.1",
"gatsby-plugin-emotion": "^4.2.1",
"gatsby-plugin-manifest": "^2.3.3",
"gatsby-plugin-offline": "^3.1.2",
"gatsby-plugin-react-helmet": "^3.1.23",
"gatsby-plugin-sharp": "^2.4.7",
"gatsby-plugin-sitemap": "^2.2.28",
"gatsby-plugin-typography": "^2.3.23",
"gatsby-remark-autolink-headers": "^2.1.25",
"gatsby-remark-copy-linked-files": "^2.1.38",
"gatsby-remark-copy-relative-linked-files": "^1.0.3",
"gatsby-remark-draw": "^1.0.16",
"gatsby-remark-images": "^3.1.46",
"gatsby-remark-prismjs": "^3.3.33",
"gatsby-remark-table-of-contents": "^0.0.9",
"gatsby-source-filesystem": "^2.1.50",
"gatsby-transformer-remark": "^2.6.55",
"gatsby-transformer-sharp": "^2.4.3",
"graphviz": "^0.0.9",
"ink": "^2.7.1",
"joi": "^17.3.0",
"keycloak-js": "^9.0.2",
"prismjs": "^1.19.0",
"prop-types": "^15.7.2",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-helmet": "^5.2.1",
"react-loadable": "^5.5.0",
"react-refresh": "^0.8.3",
"react-typography": "^0.16.19",
"typescript": "^3.8.3",
"typography": "^0.16.19",
"webpack": "^4.42.1"
}
}