This repository has been archived by the owner on Jul 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2 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
66
67
68
69
70
71
72
73
74
75
{
"name": "social-oembed",
"type": "module",
"version": "0.0.1",
"description": "API to offer OpenGraph meta or oEmbed media.",
"author": {
"name": "Ewilan Rivière",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://github.com/kiwilan/social-oembed#readme",
"repository": {
"type": "git",
"url": "https://github.com/kiwilan/social-oembed"
},
"keywords": [
"fastify",
"oembed",
"social",
"api",
"embed",
"media",
"social network",
"nodejs",
"typescript"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"postinstall": "npm run config",
"check:types": "tsc --noEmit",
"clean": "rimraf build && rimraf node_modules && pnpm install",
"config": "node setup.js",
"dev": "npm run config && NODE_ENV=development tsx watch src .env",
"build": "rimraf build && npm run config && NODE_ENV=production tsx setup.js && npm run check:types",
"start": "node build/index.mjs",
"pm2": "pm2 start --name 'seeds' './build/index.mjs'",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@fastify/autoload": "^5.7.1",
"@fastify/cors": "^8.2.1",
"@fastify/env": "^4.2.0",
"@fastify/helmet": "^10.1.1",
"@fastify/middie": "^8.3.0",
"@fastify/sensible": "^5.2.0",
"@kiwilan/fastify-utils": "^0.2.12",
"@kiwilan/filesystem": "^0.0.18",
"cheerio": "1.0.0-rc.12",
"fastify": "^4.17.0",
"fastify-plugin": "^4.5.0",
"node-fetch": "^3.3.1",
"puppeteer": "^20.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.1",
"@types/node": "^20.2.1",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"esbuild": "^0.17.19",
"esbuild-plugin-pino": "2.0.0",
"eslint": "^8.41.0",
"ofetch": "^1.0.1",
"pino": "^8.14.1",
"pino-pretty": "^10.0.0",
"tsx": "^3.12.7",
"typescript": "^5.0.4"
}
}