-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.2 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
{
"name": "azure-sync",
"version": "1.0.0",
"description": "A service for managing and maintaining synchronicity bettwen Azure and its mirror",
"scripts": {
"start": "nodemon --exec ts-node src/index.ts",
"build": "tsc",
"clean": "ts-node src/index.ts --action=clean --container=patriciopersonal --source=PatricioPersonalMusics:CoverKey,PatricioPersonalMusics:AudioKey,PatricioPersonalMoments:ImageKey",
"backup": "ts-node src/index.ts --action=backup --source=Owners,SocialMedia,PatricioPersonalMoments,PatricioPersonalMusics,PatricioPersonalUpdates -r",
"restore": "ts-node src/index.ts --action=restore",
"clone": "ts-node src/index.ts --action=clone --container=patriciopersonal -r -e",
"replace": "ts-node src/index.ts --action=replace --container=patriciopersonal --path=/home/scpuser/transport-cache"
},
"author": "Michael May",
"license": "MIT",
"devDependencies": {
"@types/minimist": "^1.2.0",
"@types/tedious": "^4.0.0",
"nodemon": "^2.0.2",
"ts-node": "^8.6.2",
"typescript": "^3.8.2"
},
"dependencies": {
"@azure/storage-blob": "^12.1.0",
"dotenv": "^8.2.0",
"minimist": "^1.2.5",
"rxjs": "^6.5.4",
"tedious": "^8.0.1"
}
}