-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
52 lines (52 loc) · 1.51 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
{
"name": "trace.moe-api",
"version": "1.0.0",
"description": "API server of trace.moe",
"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",
"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 --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/soruly/trace.moe-api.git"
},
"author": "soruly",
"license": "MIT",
"bugs": {
"url": "https://github.com/soruly/trace.moe-api/issues"
},
"homepage": "https://github.com/soruly/trace.moe-api#readme",
"devDependencies": {
"jest": "^29.7.0",
"prettier": "^3.4.2",
"supertest": "^7.0.0"
},
"dependencies": {
"@soruly/opencv4nodejs-prebuilt": "^7.1.0",
"aniep": "^0.6.0",
"better-sqlite3": "^11.7.0",
"canvas": "^3.0.0-rc3",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^5.0.1",
"express-rate-limit": "^7.4.1",
"knex": "^3.1.0",
"lzma-native": "^8.0.6",
"multer": "^1.4.5-lts.1",
"mysql": "^2.18.1",
"nodemailer": "^6.9.16",
"rss": "^1.2.2",
"xmldoc": "^1.3.0"
}
}