-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.83 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
{
"name": "sites-sync",
"version": "1.1.0",
"description": "Tools for automate sync of dynamic data (content like database and files) between sites via ssh or kubectl.",
"main": "dist/index.js",
"license": "MIT",
"type": "module",
"homepage": "https://github.com/MurzNN/sites-sync",
"repository": {
"type": "git",
"url": "https://github.com/MurzNN/sites-sync.git"
},
"keywords": [
"backup",
"database",
"dump",
"sync",
"synchronize",
"sites-sync"
],
"author": {
"name": "Alexey Murz Korepov",
"email": "[email protected]",
"url": "http://korepov.pro"
},
"bin": {
"sites-sync": "sites-sync",
"ss": "sites-sync"
},
"scripts": {
"sites-sync": "node dist/index.js",
"ss": "node dist/index.js",
"build": "tsc -p ./tsconfig.prod.json",
"watch": "tsc --watch",
"start": "node dist/index.js",
"release": "standard-version"
},
"dependencies": {
"@tuplo/envsubst": "^1.13.0",
"date-fns": "^2.27.0",
"dotenv": "^8.2.0",
"dotenv-expand": "^5.1.0",
"fs-extra": "^10.0.0",
"js-yaml": "^4.0.0",
"lodash.merge": "^4.6.2",
"pretty-bytes": "^5.5.0",
"yargs": "^17.3"
},
"devDependencies": {
"@types/dateformat": "^5.0.0",
"@types/fs-extra": "^9.0.13",
"@types/js-yaml": "^4.0.5",
"@types/lodash.merge": "^4.6.6",
"@types/node": "^17.0.0",
"@types/yargs": "^17.0.7",
"@types/yargs-unparser": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"prettier-eslint": "^10.1.0",
"standard-version": "^9.3.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"files": [
"dist/**/*",
"sites-sync",
"sites-sync.example.yaml"
]
}