-
Notifications
You must be signed in to change notification settings - Fork 129
/
package.json
101 lines (101 loc) · 2.46 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
{
"name": "react-express",
"description": "Learn React through interactive examples",
"version": "1.0.0",
"author": "Devin Abbott <devinabbott@gmail.com> (http://github.com/dabbott)",
"dependencies": {
"@babel/core": "^7.10.2",
"@mdx-js/mdx": "^1.0.20",
"@mdx-js/react": "^1.0.0",
"@mdx-js/tag": "^0.20.3",
"@next/mdx": "^8.1.0",
"next": "^10.0.5",
"next-images": "^1.1.2",
"react": "^16.8.0",
"react-dom": "^16.8.6",
"react-ga": "^2.6.0",
"react-guidebook": "^0.10.6",
"react-helmet": "^5.2.1",
"reset-css": "^5.0.1",
"spectacle": "^6.1.0",
"styled-components": "^5.2.0"
},
"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.0.20",
"@types/mdx-js__react": "^1.5.3",
"@types/node": "^14.14.21",
"@types/react": "^17.0.0",
"@types/styled-components": "^5.1.7",
"babel-loader": "^8.1.0",
"babel-plugin-styled-components": "^1.11.1",
"generate-guidebook": "^1.3.4",
"loader-utils": "^1.2.3",
"next-mdx-frontmatter": "^0.0.3",
"prettier": "^2.2.1",
"raw-loader": "^3.0.0",
"rehype-slug": "^4.0.1",
"spectacle-mdx-loader": "^0.1.1",
"typescript": "^4.1.3"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"guidebook": {
"title": "React Express",
"description": "Learn React through interactive examples",
"location": {
"host": "www.react.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-express"
},
"googleAnalytics": {
"trackingId": "UA-77053427-2"
},
"facebook": {
"appId": "105028866738480"
},
"i18n": {
"locales": [
"en"
],
"defaultLocale": "en"
}
}
}