-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.44 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
{
"name": "ramka-scripts",
"version": "0.1.0",
"description": "ramka-scripts - Backend scripts for ramka project",
"main": "index.js",
"bin": {
"ramka-scripts": "src/cli.js"
},
"scripts": {
"start": "node index.js",
"cli": "node src/cli.js",
"test": "./node_modules/.bin/jest",
"test:watch": "./node_modules/.bin/jest --watch",
"clear": "./node_modules/.bin/rimraf node_modules",
"debug": "node --inspect-brk index.js",
"list-cs-files": "node ./scripts/listCsFiles.js",
"create-hardlinks-cs": "node ./scripts/hardLinksCS.js",
"print-log": "./node_modules/.bin/bunyan $(find ../logs/ -type f | fzf -q \".log$\")",
"print-log-no-date": "jq '.[\"no-date-files\"]?' < $(find ../logs/ -type f | fzf -q \".log$\")",
"print-log-no-date-paths": "jq '.[\"no-date-files\"]? | .[].importedPath' < $(find ../logs/ -type f | fzf -q \".log$\")",
"print-log-walked": "jq '.[\"walked-files\"]?' < $(find ../logs/ -type f | fzf -q \".log$\")",
"print-log-db-duplicates": "jq '.[\"db-duplicates\"]? | .[].fileMetadata.name' < $(find ../logs/ -type f | fzf -q \".log$\")",
"print-log-import-duplicates": "jq '.[\"import-duplicates\"]?' < $(find ../logs/ -type f | fzf -q \".log$\")",
"print-log-copy-failed": "jq '.[\"copy-failed\"]? | .fileMetadata.name' < $(find ../logs/ -type f | fzf -q \".log$\")",
"print-log-db-confirmation-failed": "jq '.[\"db-confirmation-failed\"]?' < $(find ../logs/ -type f | fzf -q \".log$\")",
"print-log-export-albums": "jq < $(find ../logs/ -type f | fzf -q \".log$\")"
},
"repository": {
"type": "git",
"url": "\"prv\""
},
"author": "qaraluch",
"license": "MIT",
"devDependencies": {
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.13.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"jest": "^26.0.1",
"prettier": "2.0.5",
"rimraf": "^3.0.2"
},
"dependencies": {
"bunyan": "^1.8.12",
"chalk": "^4.0.0",
"cp-file": "9.0.0",
"dist-exiftool": "^10.53.0",
"figlet": "^1.4.0",
"fs-extra": "^9.0.0",
"jimp": "0.12.0",
"make-dir": "^3.1.0",
"md5-file": "^5.0.0",
"meow": "^7.0.1",
"node-exiftool": "^2.3.0",
"pouchdb": "^7.2.1",
"progress": "^2.0.3",
"qm-dedupe": "^2.0.3",
"qm-walk": "^2.2.7",
"signale": "^1.4.0",
"throat": "^5.0.0"
}
}