-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.42 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
42
43
44
45
46
47
48
49
50
51
{
"name": "react-native-cryptocurrency",
"version": "1.0.0",
"description": "React Native app for Cryptocurrency",
"main": "index.js",
"scripts": {
"build": "mdx-deck build src/deck.mdx",
"copy:static": "cp -r src/img dist",
"help": "mdx-deck",
"image": "mdx-deck screenshot src/deck.mdx",
"lint:staged": "lint-staged",
"pdf": "mdx-deck pdf src/deck.mdx",
"prettier": "prettier --write --single-quote true --trailing-comma all --print-width 100",
"publish:deck": "yarn build --no-html src/deck.mdx && yarn copy:static && gh-pages -d dist",
"start": "mdx-deck src/deck.mdx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jgcmarins/react-native-cryptocurrency.git"
},
"keywords": [
"react",
"react-native",
"ios",
"android",
"cryptocurrency",
"bleeding-edge"
],
"author": "Joao Marins (jgcmarins@gmail.com)",
"license": "MIT",
"lint-staged": {
"*.js": [
"yarn prettier",
"git add"
]
},
"bugs": {
"url": "https://github.com/jgcmarins/react-native-cryptocurrency/issues"
},
"homepage": "https://github.com/jgcmarins/react-native-cryptocurrency#readme",
"devDependencies": {
"gh-pages": "^2.0.1",
"lint-staged": "^8.1.3",
"mdx-code": "^1.1.3",
"mdx-deck": "^1.8.2",
"mdx-deck-code-surfer": "^0.5.5",
"mdx-deck-live-code": "^1.0.0",
"prettier": "^1.16.4",
"raw-loader": "^1.0.0"
}
}