-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.13 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
{
"name": "ycombinator1.com",
"version": "0.0.1",
"description": "OpenGraph proxy and Slack app for news.ycombinator.com URLs",
"main": "index.js",
"repository": "[email protected]:statico/ycombinator1.com.git",
"author": "Ian Langworth <[email protected]>",
"license": "Unlicense",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prepare": "husky install"
},
"devDependencies": {
"@types/node": "^18.14.1",
"@types/react": "^18.0.28",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "2.8.4",
"typescript": "^4.9.5"
},
"licenses": [
{
"license": "MIT"
}
],
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"chrome-aws-lambda": "6.0.0",
"ioredis": "^5.3.1",
"next": "^13.2.1",
"openai": "^3.2.1",
"puppeteer-core": "6.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rehype": "^12.0.1",
"rehype-remark": "^9.1.2",
"remark-gfm": "^3.0.1",
"remark-stringify": "^10.0.2",
"unified": "^10.1.2"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}