-
Notifications
You must be signed in to change notification settings - Fork 147
/
package.json
106 lines (106 loc) · 2.61 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "react-native-express",
"description": "The all-in-one guide to React Native",
"version": "2.0.0",
"author": "Devin Abbott <[email protected]> (http://github.com/dabbott)",
"dependencies": {
"@babel/core": "^7.10.2",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@mdx-js/tag": "^0.20.3",
"@next/mdx": "^8.1.0",
"disqus-react": "^1.0.10",
"flexsearch": "^0.6.32",
"next": "^10.0.3",
"next-images": "^1.6.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-ga": "^3.3.0",
"react-guidebook": "^0.10.6",
"spectacle": "^6.2.0",
"styled-components": "^5.1.1",
"tree-visit": "^0.0.7"
},
"keywords": [],
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build && next export",
"start": "next start -p $PORT",
"format": "prettier --write '**/*.js'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@mdx-js/loader": "^1.6.22",
"@types/mdx-js__react": "^1.5.3",
"@types/node": "^14.14.11",
"@types/react": "^17.0.0",
"@types/styled-components": "^5.1.4",
"babel-loader": "^8.1.0",
"babel-plugin-styled-components": "^1.11.1",
"generate-guidebook": "^1.3.4",
"next-mdx-frontmatter": "^0.0.3",
"prettier": "^2.0.5",
"raw-loader": "^3.0.0",
"rehype-slug": "^4.0.1",
"spectacle-mdx-loader": "^0.1.1",
"typescript": "^4.1.2"
},
"repository": {
"type": "git",
"url": "https://github.com/dabbott/react-native-express"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"guidebook": {
"title": "React Native Express",
"description": "The all-in-one guide to React Native",
"location": {
"host": "www.reactnative.express"
},
"author": {
"twitter": "dvnabbott"
},
"favicons": [
{
"type": "image/x-icon",
"path": "/static/favicon.ico"
},
{
"type": "image/png",
"path": "/static/favicon.png"
}
],
"previewImage": {
"type": "image/png",
"width": "1200",
"height": "630",
"alt": "Website preview",
"path": "/static/preview.png"
},
"github": {
"user": "dabbott",
"repo": "react-native-express"
},
"disqus": {
"shortname": "reactnativeexpress",
"stagingShortname": "reactnativeexpress-staging"
},
"googleAnalytics": {
"trackingId": "UA-77053427-1"
},
"facebook": {
"appId": "907755649360812"
},
"i18n": {
"locales": [
"en",
"zh-cn"
],
"defaultLocale": "en"
}
}
}