-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.17 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.17 KB
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
{
"name": "slides",
"version": "0.0.0-development",
"description": "Slides for talks and presentations",
"license": "CC BY-NC 4.0",
"author": "Andrey Okonetchnikov <andrey@okonet.ru>",
"repository": {
"type": "git",
"url": "git+https://github.com/component-driven/slides.git"
},
"bugs": {
"url": "https://github.com/component-driven/slides/issues"
},
"homepage": "https://github.com/component-driven/slides#readme",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"posttest": "npm run format",
"start": "gatsby develop",
"build": "gatsby build",
"format": "prettier --loglevel warn --write \"**/*.{js,css,md}\"",
"prepare": "husky install"
},
"dependencies": {
"@component-driven/mdx-deck-theme": "^2.0.2",
"emotion": "^11.0.0",
"gatsby": "^2.32.12",
"gatsby-plugin-compile-es6-packages": "^2.1.0",
"gatsby-theme-mdx-deck": "^4.1.0",
"mdx-deck": "^4.1.1",
"react": "^16.14.0",
"react-dom": "^16.14.0"
},
"devDependencies": {
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1"
},
"lint-staged": {
"*.{jsx?,css,mdx?,json}": "prettier --write"
}
}