-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.88 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.88 KB
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
{
"name": "obvilion-network-api",
"version": "2.1.0",
"description": "An Express.js server for Obvilion network.",
"author": {
"name": "Obvilion Network Team"
},
"private": true,
"scripts": {
"doc": "jsdoc -r -d ./docs/ -R ./README.md ./src/",
"api-doc": "node tools/api-docs.js",
"build": "tsc",
"dev": "ts-node src/index.ts",
"lint": "eslint src",
"prisma": "npx prisma studio --port 7030",
"start": "node dist/src/index"
},
"dependencies": {
"@prisma/client": "^4.2.1",
"@qiwi/bill-payments-node-js-sdk": "^3.2.1",
"async": "^3.2.4",
"axios": "^0.21.1",
"canvas": "^2.11.0",
"connect-busboy": "^1.0.0",
"cors": "^2.8.5",
"discord.js": "^12.3.1",
"express": "^4.17.1",
"express-fileupload": "^1.2.0",
"express-validator": "^6.6.0",
"imap": "^0.8.19",
"jimp": "^0.16.0",
"jsonwebtoken": "^8.5.1",
"mailparser": "^3.6.3",
"mindustry.js": "^0.1.2",
"minecraft-server-util": "^5.1.2",
"node-cron": "^3.0.0",
"node-watch": "^0.7.3",
"nodemailer": "^6.7.7",
"yoomoney-sdk": "^1.5.5"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.7",
"@types/express-fileupload": "^1.1.7",
"@types/node": "^16.0.0",
"@types/node-cron": "^2.0.4",
"@types/nodemailer": "^6.4.5",
"@types/ws": "^7.4.6",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.16.0",
"eslint-config-airbnb-typescript": "^10.0.0",
"eslint-plugin-import": "^2.22.0",
"jsdoc": "^3.6.6",
"nodemon": "^2.0.4",
"prisma": "^4.2.1",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
}
}