-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.38 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
{
"name": "presentacion",
"description": "Slides para presentar la comunidad en cada evento",
"version": "0.0.1",
"scripts": {
"build": "mkdir -p ./public/images && cp -R ./src/images/. ./public/images && mdx-deck build src/presentacion.mdx --out-dir public/",
"deploy": "npm run build && cd public && echo presentacion-meetupjs.surge.sh > CNAME && surge",
"start": "mdx-deck src/presentacion.mdx",
"precommit": "lint-staged"
},
"author": "durancristhian@gmail.com",
"license": "MIT",
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --arrow-parens always --print-width 100 --single-quote --write",
"git add"
]
},
"dependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"lint-staged": "^8.1.5",
"mdx-deck": "^2.3.2",
"prettier": "^1.17.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meetupjs-ar/presentacion.github.io.git"
},
"keywords": [
"meetup",
"javascript",
"buenos aires"
],
"bugs": {
"url": "https://github.com/meetupjs-ar/presentacion.github.io/issues"
},
"homepage": "https://presentacion.meetupjs.com.ar/"
}