-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·96 lines (96 loc) · 3.3 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@octopusthink/ghost-ship",
"description": "The Octopus Think blog + site starter for Gatsby",
"version": "0.2.0",
"license": "MIT",
"scripts": {
"build": "gatsby build",
"build:pp": "gatsby build --prefix-paths",
"build:gh": "npm run clean && npm run build && gh-pages -d public",
"clean": "rm -rf public && rm -rf .cache",
"format": "prettier --write **/**/*.{js,jsx}",
"lint": "eslint .",
"remove:all": "npm run remove:blog && npm run remove:portfolio",
"remove:blog": "rm -rf src/content/blog && rm -rf src/templates/Blog",
"remove:portfolio": "rm -rf src/content/portfolio && rm -rf src/templates/Portfolio",
"start": "gatsby develop",
"serve": "gatsby serve",
"test": "echo 'No tests yet! (See: https://gatsby.dev/unit-testing/)'"
},
"prettier": "@octopusthink/prettier-config",
"dependencies": {
"@emotion/core": "^10.0.17",
"@mdx-js/mdx": "^1.5.1",
"@mdx-js/react": "^1.5.1",
"@octopusthink/nautilus": "github:octopusthink/nautilus#b5d2370637ad03bfff510cd61a57c8f8487865dc",
"@use-it/event-listener": "^0.1.3",
"a11y-react-emoji": "^1.1.1",
"acorn": "^7.1.0",
"babel-jest": "^24.8.0",
"babel-preset-gatsby": "^0.2.17",
"dayjs": "^1.8.16",
"email-validator": "^2.0.4",
"emotion-theming": "^10.0.19",
"gatsby": "^2.15.28",
"gatsby-image": "^2.2.23",
"gatsby-plugin-emotion": "^4.1.9",
"gatsby-plugin-favicon": "^3.1.6",
"gatsby-plugin-feed": "^2.3.15",
"gatsby-plugin-layout": "^1.1.10",
"gatsby-plugin-matomo": "^0.7.2",
"gatsby-plugin-mdx": "^1.0.53",
"gatsby-plugin-react-helmet": "^3.1.10",
"gatsby-plugin-react-svg": "^2.1.2",
"gatsby-plugin-sharp": "^2.2.12",
"gatsby-plugin-sitemap": "^2.2.16",
"gatsby-remark-images": "^3.1.28",
"gatsby-remark-reading-time": "^1.0.1",
"gatsby-remark-smartypants": "^2.1.11",
"gatsby-source-filesystem": "^2.1.28",
"gatsby-transformer-remark": "^2.6.26",
"gatsby-transformer-sharp": "^2.2.19",
"gatsby-transformer-yaml": "^2.2.12",
"gh-pages": "^2.0.1",
"identity-obj-proxy": "^3.0.0",
"inter-ui": "^3.10.0",
"invariant": "^2.2.4",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"pluralize": "^8.0.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"react-test-renderer": "^16.8.6",
"rehype-react": "^4.0.1",
"remark-mdx": "^1.5.1",
"remark-retext": "^3.1.3",
"retext-smartypants": "^3.0.3",
"shortid": "^2.2.15",
"smooth-scroll": "^16.1.0",
"typeface-inter": "0.0.77"
},
"devDependencies": {
"@octopusthink/eslint-config": "^0.5.0",
"@octopusthink/prettier-config": "^0.5.2",
"babel-eslint": "^10.0.3",
"eslint": "^6.4.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-emotion": "^10.0.14",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"prettier": "^1.18.2"
},
"repository": {
"type": "git",
"url": "https://github.com/octopusthink/ghost-ship"
},
"bugs": {
"url": "https://github.com/octopusthink/ghost-ship/issues"
}
}