Skip to content

Commit 9097a64

Browse files
author
Andrey Okonetchnikov
committed
Initial commit with adverity presentation
1 parent 1e93f94 commit 9097a64

34 files changed

+45830
-0
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package-lock.json binary

.gitignore

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# See https://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
6+
# testing
7+
/coverage
8+
9+
# production
10+
/public
11+
12+
# Gatsby
13+
.cache
14+
15+
# misc
16+
.DS_Store
17+
.env.local
18+
.env.development.local
19+
.env.test.local
20+
.env.production.local
21+
22+
npm-debug.log*
23+
yarn-debug.log*
24+
yarn-error.log*

gatsby-config.js

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
module.exports = {
2+
plugins: [
3+
{
4+
resolve: 'gatsby-theme-mdx-deck',
5+
options: {
6+
// source directory
7+
contentPath: './src',
8+
// base path for routes generate by this theme
9+
basePath: '/',
10+
},
11+
},
12+
{
13+
resolve: 'gatsby-plugin-compile-es6-packages',
14+
options: {
15+
modules: [
16+
'mdx-deck',
17+
'gatsby-theme-mdx-deck',
18+
'@mdx-deck/themes',
19+
'@mdx-deck/gatsby-plugin',
20+
],
21+
},
22+
},
23+
],
24+
};

package-lock.json

+44,715
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"name": "slides",
3+
"version": "0.0.0-development",
4+
"description": "Slides for talks and presentations",
5+
"license": "CC BY-NC 4.0",
6+
"author": "Andrey Okonetchnikov <[email protected]>",
7+
"repository": {
8+
"type": "git",
9+
"url": "git+https://github.com/component-driven/slides.git"
10+
},
11+
"bugs": {
12+
"url": "https://github.com/component-driven/slides/issues"
13+
},
14+
"homepage": "https://github.com/component-driven/slides#readme",
15+
"scripts": {
16+
"test": "echo \"Error: no test specified\" && exit 1",
17+
"start": "gatsby develop",
18+
"build": "gatsby build"
19+
},
20+
"dependencies": {
21+
"@component-driven/mdx-deck-theme": "^2.0.1",
22+
"emotion": "^11.0.0",
23+
"gatsby": "^2.32.12",
24+
"gatsby-plugin-compile-es6-packages": "^2.1.0",
25+
"gatsby-theme-mdx-deck": "^4.1.0",
26+
"mdx-deck": "^4.1.1",
27+
"react": "^16.14.0",
28+
"react-dom": "^16.14.0"
29+
}
30+
}

0 commit comments

Comments
 (0)