forked from vercel/og-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.07 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
{
"private": true,
"scripts": {
"build": "tsc -p api/tsconfig.json && tsc -p web/tsconfig.json",
"format": "yarn format:index && yarn format:web && yarn format:api",
"format:index": "prettier --write \"*.{js,json,md}\"",
"format:web": "prettier --write \"web/**/*.{js,json}\"",
"format:api": "prettier --write \"api/**/*.{js,ts,json}\"",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"prepare": "yarn format"
},
"dependencies": {
"chrome-aws-lambda": "2.1.1",
"marked": "0.8.2",
"puppeteer-core": "2.1.1",
"twemoji": "12.1.5"
},
"devDependencies": {
"@types/marked": "0.7.3",
"@types/puppeteer": "2.0.1",
"@types/puppeteer-core": "2.0.0",
"all-contributors-cli": "^6.16.1",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"typescript": "3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "yarn contributors:generate && yarn prepare"
}
},
"prettier": {
"semi": true,
"singleQuote": false,
"trailingComma": "all"
},
"license": "MIT"
}