-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 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
{
"name": "shotit-meta-service",
"version": "1.0.0",
"description": "Provide meta information and utility for shotit, for example, image proxy, cast and poster etc.",
"main": "server.js",
"type": "module",
"scripts": {
"start": "pm2 start ecosystem.config.json",
"stop": "pm2 stop ecosystem.config.json",
"restart": "pm2 restart ecosystem.config.json",
"reload": "pm2 reload ecosystem.config.json",
"delete": "pm2 delete ecosystem.config.json",
"logs": "pm2 logs",
"prettier": "prettier",
"format": "prettier --write \"**/*.js\"",
"lint": "prettier --check \"**/*.js\"",
"test": "prettier --check \"**/*.js\""
},
"dependencies": {
"body-parser": "^1.20.2",
"canvas": "^2.11.2",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"express-rate-limit": "^6.6.0",
"mongodb": "^3.6.2"
},
"repository": "https://github.com/shotit/shotit-meta-service.git",
"author": "PolarBeaver Technology",
"license": "Apache-II",
"private": true,
"devDependencies": {
"pm2": "^5.3.0",
"prettier": "^2.8.8"
}
}