-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.67 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
{
"name": "shotit-api",
"version": "0.9.13",
"description": "The ultimate brain of shotit, in charge of task coordination",
"main": "server.js",
"type": "module",
"scripts": {
"start": "pm2 start ecosystem.config.json",
"watch": "pm2 start ecosystem.config.json --watch",
"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\"",
"jest": "NODE_NO_WARNINGS=1 NODE_OPTIONS=--experimental-vm-modules jest --coverage --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shotit/shotit-api.git"
},
"author": "PolarBeaver Technology",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/shotit/shotit-api/issues"
},
"homepage": "https://github.com/shotit/shotit-api#readme",
"devDependencies": {
"jest": "^29.6.1",
"prettier": "^2.8.3",
"supertest": "^6.3.3"
},
"dependencies": {
"@soruly/opencv4nodejs-prebuilt": "^6.0.2",
"@zilliz/milvus2-sdk-node": "2.2.19",
"aniep": "^0.6.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^6.7.1",
"form-data": "^4.0.0",
"fs-extra": "^11.1.0",
"knex": "^2.5.1",
"multer": "^1.4.5-lts.1",
"mysql": "^2.18.1",
"node-fetch": "^3.3.0",
"nodemailer": "^6.9.3",
"public-ip": "^6.0.2",
"redis": "^4.6.7",
"rss": "^1.2.2",
"ws": "^8.12.0"
}
}