-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.33 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 2.33 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
{
"dependencies": {},
"devDependencies": {
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"@types/node": "24.5.2",
"commitizen": "4.3.0",
"husky": "9.1.4",
"lint-staged": "15.2.8",
"prettier": "3.3.2",
"tsx": "4.20.5",
"turbo": "2.0.4"
},
"engines": {
"node": ">=20"
},
"lint-staged": {
"*.{ts,tsx,json,md}": "prettier --ignore-unknown --write",
"*.{ts,tsx}": "eslint --cache --fix"
},
"name": "arthistory",
"packageManager": "npm@7.24.2",
"private": true,
"scripts": {
"build": "turbo build",
"build:force": "turbo build --force",
"clean": "rm -rf node_modules build apps/**/node_modules packages/**/node_modules apps/**/dist apps/**/build packages/**/dist packages/**/build apps/**/.next",
"copy-object": "tsx packages/scripts/src/copy-object",
"create-indexes": "tsx packages/scripts/src/create-indexes",
"create-sample-db": "tsx packages/scripts/src/create-sample-db",
"cron-service": "tsx packages/scripts/src/cron-service",
"delete-local-dbs": "tsx packages/scripts/src/delete-local-dbs",
"delete-remote-dbs": "tsx packages/scripts/src/delete-remote-dbs",
"dev": "turbo dev",
"download-dbs": "tsx packages/scripts/src/download-dbs",
"download-object": "tsx packages/scripts/src/download-object",
"format": "prettier --write \"**/*.{json,js,ts,tsx,md}\"",
"lint": "turbo lint",
"list-objects": "tsx packages/scripts/src/list-objects",
"merge-dbs": "tsx packages/scripts/src/merge-dbs",
"prepare": "husky || exit 0",
"pretty-print-logs": "sudo journalctl --pager-end --no-pager --lines 5000 --unit arthistory-cron-service.service | cut -c 37-10000 | pino-pretty --ignore pid,hostname",
"sync": "tsx packages/scripts/src/sync",
"upload-logs": "sudo journalctl --pager-end --no-pager --lines 5000 --unit arthistory-cron-service.service | cut -c 37-10000 > logs.txt && npm run upload-object -- --filename logs.txt --bucket logs --key logs-`node -e 'console.log(new Date().toISOString())'`.txt",
"upload-object": "tsx packages/scripts/src/upload-object"
},
"version": "0.0.0-development",
"workspaces": [
"apps/*",
"packages/*"
]
}