-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.56 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
{
"name": "noahgilmore.com",
"description": "My personal website",
"version": "1.0.0",
"author": "Noah Gilmore",
"dependencies": {
"classnames": "^2.5.1",
"feed": "^4.2.2",
"gh-pages": "^2.0.1",
"gray-matter": "^4.0.3",
"next": "^12.2.0",
"next-mdx-remote": "^4.1.0",
"next-transpile-modules": "^10.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-ga": "^3.3.1",
"react-icons": "^3.11.0",
"react-markdown": "^8.0.5",
"react-syntax-highlighter": "^15.5.0",
"react-twitter-embed": "^4.0.4",
"rehype-img-size": "^1.0.1",
"slugify": "^1.6.5",
"tailwindcss": "^3.4.2"
},
"license": "MIT",
"scripts": {
"format": "prettier --write \"src/**/*.js\"",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"generate:rss": "node scripts/rss.js",
"pages:build": "npm run generate:rss && npx @cloudflare/next-on-pages",
"preview": "npm run pages:build && wrangler pages dev",
"deploy": "npm run pages:build && wrangler pages deploy"
},
"prebuild": "npm run generate:rss",
"devDependencies": {
"@cloudflare/next-on-pages": "^1.13.3",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@tailwindcss/typography": "^0.5.15",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"vercel": "^37.5.3",
"wrangler": "^3.78.7"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"type": "module"
}