-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
96 lines (96 loc) · 2.1 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "mysql-backup",
"version": "3.0.4",
"description": "Automatically get your mysql database backup and uploading it to the Object Storage.",
"main": "src/main.js",
"scripts": {
"dev": "nodemon src/main.js",
"start": "node src/main.js",
"lint": "standard src/**/*.js",
"lint:fix": "standard --fix src/**/*.js",
"test": "node test/upload.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yi-ge/mysql-backup.git"
},
"keywords": [
"MySQL",
"Backup"
],
"author": "yi-ge <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yi-ge/mysql-backup/issues"
},
"homepage": "https://github.com/yi-ge/mysql-backup#readme",
"type": "module",
"dependencies": {
"ali-oss": "^6.16.0",
"archiver": "^5.3.0",
"archiver-zip-encrypted": "^1.0.10",
"axios": "^0.25.0",
"cos-nodejs-sdk-v5": "^2.10.0",
"dayjs": "^1.10.6",
"fastify": "^3.27.0",
"fastify-cors": "^6.0.2",
"fastify-jwt": "^4.1.3",
"fastify-plugin": "^3.0.0",
"fastify-static": "^4.5.0",
"fastify-swagger": "^4.13.1",
"jssha": "^3.2.0",
"lowdb": "^2.1.0",
"mysql2": "^2.3.0",
"mysqldump": "^3.2.0",
"node-schedule": "^2.0.0",
"pino-pretty": "^7.4.0",
"qcloudsms_js": "^0.1.1",
"qiniu": "https://github.com/yi-ge/nodejs-sdk",
"request": "^2.88.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"nodemon": "^2.0.12",
"standard": "^16.0.3"
},
"standard": {
"parser": "babel-eslint",
"globals": [
"$",
"monaco"
],
"env": {
"browser": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 9,
"sourceType": "module"
},
"ignore": [
"src/ui/",
"src/template"
]
},
"nodemonConfig": {
"ignore": [
".git",
"node_modules/**/node_modules"
],
"delay": "2500",
"env": {
"NODE_ENV": "development"
},
"verbose": true,
"execMap": {
"js": "node --harmony"
},
"watch": [
"src/"
],
"ext": "js,json"
},
"engines": {
"node": ">= 13.7.0"
}
}