-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.6 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
{
"name": "devtools.fm",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"setup-for-ci": "git remote add origin https://github.com/devtools-fm/devtools.fm.git && git pull origin main --unshallow",
"build": "yarn setup-for-ci && next build && yarn build-rss",
"build-rss": "node -r esbuild-register utils/generate-rss.ts",
"start": "next start",
"create-new-episode": "node -r esbuild-register scripts/create-new-episode.ts",
"postinstall": "patch-package"
},
"dependencies": {
"@devtools-ds/icon": "^1.1.0",
"@devtools-ds/navigation": "^1.1.0",
"@devtools-ds/object-inspector": "^1.1.0",
"@devtools-ds/themes": "^1.1.0",
"@radix-ui/react-label": "^2.0.2",
"@vercel/analytics": "^1.0.1",
"clsx": "^1.1.1",
"googleapis": "^122.0.0",
"gray-matter": "^4.0.3",
"next": "^13.4.12",
"next-mdx-remote": "^2.1.4",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"query-string": "^7.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-window-ui": "^2.2.0",
"rss": "^1.2.2",
"use-query-params": "^1.2.2"
},
"devDependencies": {
"@design-systems/next-esm-css": "^2.17.2",
"@types/react": "^17.0.3",
"@types/rss": "^0.0.31",
"autoprefixer": "^10.2.5",
"cheerio": "^1.0.0-rc.6",
"endent": "^2.0.1",
"esbuild": "^0.19.12",
"esbuild-register": "^3.6.0",
"isomorphic-fetch": "^3.0.0",
"postcss": "^8.4.27",
"puppeteer": "^9.0.0",
"tailwindcss": "^2.1.1",
"title-case": "^3.0.3",
"type-fest": "^1.0.2",
"typescript": "^4.2.4"
}
}