-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.07 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.07 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "gatsby-starter-mdx-basic",
"description": "Gatsby starter MDX basic",
"version": "1.0.0",
"author": "Chris Biscardi <chris@christopherbiscardi.com>",
"dependencies": {
"@mdx-js/mdx": "^1.1.5",
"@mdx-js/react": "^1.1.5",
"@tailwindcss/typography": "^0.3.1",
"autoprefixer": "^10.1.0",
"gatsby": "^2.13.50",
"gatsby-image": "^2.2.8",
"gatsby-plugin-manifest": "^2.2.4",
"gatsby-plugin-mdx": "^1.0.0",
"gatsby-plugin-no-javascript": "^2.0.5",
"gatsby-plugin-offline": "^2.2.4",
"gatsby-plugin-postcss": "^3.3.0",
"gatsby-plugin-react-helmet": "^3.1.3",
"gatsby-plugin-react-svg": "^3.0.0",
"gatsby-plugin-sharp": "^2.2.9",
"gatsby-remark-autolink-headers": "^2.7.0",
"gatsby-remark-classes": "^1.0.0",
"gatsby-remark-external-links": "0.0.4",
"gatsby-remark-images": "^3.7.1",
"gatsby-remark-prismjs": "^3.9.0",
"gatsby-remark-responsive-iframe": "^2.7.0",
"gatsby-remark-smartypants": "^2.6.0",
"gatsby-source-filesystem": "^2.1.8",
"gatsby-transformer-sharp": "^2.2.5",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"postcss": "^8.2.1",
"postcss-import": "^13.0.0",
"postcss-preset-env": "^6.7.0",
"prismjs": "^1.22.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"react-spring": "^8.0.27",
"remark-emoji": "^2.1.0",
"tailwindcss": "^2.0.2"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"develop": "gatsby develop --host=0.0.0.0",
"build-and-serve": "gatsby build && npx http-server -o --port 9000 ./public/",
"clean": "gatsby clean",
"build": "gatsby build",
"start": "npm run develop",
"format": "prettier --write \"src/**/*.jsx\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"prettier": "^1.18.2",
"prettier-config-standard": "^1.0.1"
},
"prettier": "prettier-config-standard",
"repository": {
"type": "git",
"url": "https://github.com/christopherbiscardi/gatsby-starter-mdx-basic"
}
}