-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.06 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
{
"name": "opengraph-api-image",
"version": "0.1.0",
"description": "Web Server for OpenGraph Image",
"main": "src/index.ts",
"private": "true",
"scripts": {
"start": "cross-env NODE_ENV=production npx ts-node src/index.ts",
"nodemon": "cross-env NODE_ENV=development npx nodemon src/index.ts --ignore storage/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"server",
"backend"
],
"author": {
"name": "Dmitry Britov",
"email": "[email protected]",
"url": "https://github.com/kenclaron"
},
"license": "UNLICENSED",
"devDependencies": {
"@octokit/types": "^8.0.0",
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.14",
"@types/node": "^18.11.9",
"cross-env": "^7.0.3",
"nodemon": "^2.0.20",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.3"
},
"dependencies": {
"apicache": "^1.6.3",
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"octokit": "^2.0.10",
"open-graph-scraper": "^5.0.0"
}
}