forked from Kevin737866/-stellar-analytics-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.84 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.84 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
53
54
55
56
57
58
59
60
61
62
{
"name": "stellar-analytics-dashboard",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@9.12.0",
"scripts": {
"dev": "concurrently \"pnpm --filter @stellar-analytics/indexer dev\" \"pnpm --filter @stellar-analytics/api dev\" \"pnpm --filter @stellar-analytics/frontend dev\"",
"dev:indexer": "pnpm --filter @stellar-analytics/indexer dev",
"dev:api": "pnpm --filter @stellar-analytics/api dev",
"dev:frontend": "pnpm --filter @stellar-analytics/frontend dev",
"build": "pnpm -r build",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,css,scss,html}\"",
"test": "pnpm -r --if-present test",
"prepare": "husky install",
"commitlint": "commitlint --edit \"$1\"",
"test:ci": "pnpm --filter @stellar-analytics/api test && pnpm --filter @stellar-analytics/indexer test",
"test:e2e": "pnpm --filter @stellar-analytics/e2e test",
"test:e2e:ui": "pnpm --filter @stellar-analytics/e2e test:ui",
"test:e2e:debug": "pnpm --filter @stellar-analytics/e2e test:debug",
"test:e2e:headed": "pnpm --filter @stellar-analytics/e2e test:headed",
"test:e2e:chrome": "pnpm --filter @stellar-analytics/e2e test:chrome",
"test:e2e:firefox": "pnpm --filter @stellar-analytics/e2e test:firefox",
"test:e2e:webkit": "pnpm --filter @stellar-analytics/e2e test:webkit",
"test:e2e:codegen": "pnpm --filter @stellar-analytics/e2e codegen",
"backup:run": "docker compose run --rm -e RUN_ONCE=true postgres-backup",
"backup:verify": "docker compose run --rm postgres-backup /bin/sh /scripts/verify-latest-backup.sh",
"backup:health": "docker compose run --rm postgres-backup /bin/sh /scripts/check-backup-health.sh",
"db:migrate": "pnpm --filter @stellar-analytics/indexer db:migrate",
"db:migrate:down": "pnpm --filter @stellar-analytics/indexer db:migrate:down",
"db:migrate:create": "pnpm --filter @stellar-analytics/indexer db:migrate:create",
"db:explain": "sh scripts/database/analyze-query-plans.sh"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"concurrently": "^9.2.1",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.0",
"prettier": "^3.0.0",
"pnpm": "^10.32.1",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"pnpm exec eslint --fix",
"pnpm exec prettier --write"
],
"*.{json,md,css,scss,html}": [
"pnpm exec prettier --write"
],
"pnpm-lock.yaml": [
"pnpm exec prettier --write"
]
}
}