forked from meetupjs-ar/presentacion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.85 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
{
"name": "presentation",
"description": "Slides to present the community at each event 〽️.",
"version": "0.1.0",
"scripts": {
"precommit": "lint-staged",
"start": "mdx-deck src/presentation.mdx",
"prebuild": "rm -rf .\\public && mkdir .\\public && cp -R .\\src\\images\\ .\\public",
"build": "mdx-deck build src/presentation.mdx --out-dir public/",
"predeploy": "npm run build",
"deploy": "cd public && echo presentation-tunisianjs.surge.sh > CNAME && surge"
},
"git": {
"scripts": {
"pre-push": "npm run deploy"
}
},
"author": "[email protected]",
"contributors": [
{
"name": "Imed Jaberi",
"email": "[email protected]",
"url": "https://www.3imed-jaberi.com/"
},
{
"name": "Heithem Moumni",
"email": "[email protected]",
"url": "https://heithem.wtf/"
}
],
"license": "MIT",
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --arrow-parens always --print-width 100 --single-quote --write",
"git add"
]
},
"dependencies": {
"cross-uid": "^1.1.0",
"mdx-deck": "^2.5.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TunisianJS/presentation.git"
},
"keywords": [
"meetup",
"javascript",
"tunisia"
],
"bugs": {
"url": "https://github.com/TunisianJS/presentation/issues"
},
"homepage": "https://github.com/TunisianJS/presentation",
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.25.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"git-scripts": "^0.4.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"surge": "^0.23.0"
}
}