forked from vercel/og-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.75 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
{
"name": "custom-og-image",
"private": true,
"version": "0.0.0",
"engines": {
"node": ">=14"
},
"scripts": {
"dev": "next",
"build": "next build",
"export": "next export",
"start": "next start",
"type-check": "tsc",
"lint": "next lint --cache --ignore-path .gitignore",
"lint:fix": "yarn lint --fix && yarn format",
"format": "prettier --ignore-path .gitignore --write './{pages,components,libs,styles,types}/**/*.{js,jsx,ts,tsx,json,css,md,mdx}'"
},
"dependencies": {
"budoux": "^0.0.3",
"chrome-aws-lambda": "6.0.0",
"cors": "^2.8.5",
"marked": "^4.0.12",
"next": "^12.0.10",
"next-share": "^0.13.0",
"puppeteer-core": "6.0.0",
"query-string": "^7.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"swr": "^1.2.1",
"twemoji": "^13.1.0"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/katex": "^0.11.1",
"@types/marked": "^4.0.2",
"@types/node": "^12.12.21",
"@types/puppeteer-core": "^5.4.0",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/twemoji": "^12.1.2",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"eslint": "8.9.0",
"eslint-config-next": "^12.0.10",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.4",
"prettier": "^2.5.1",
"typescript": "^4.5.5"
},
"prettier": {
"embeddedLanguageFormatting": "off",
"trailingComma": "none",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true,
"printWidth": 120
},
"eslintIgnore": [
".eslintrc.js",
"next.config.mjs"
]
}