-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.77 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.77 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
63
64
65
{
"name": "grants-stack-indexer",
"version": "0.0.1",
"private": true,
"description": "Grants stack indexer for Gitcoin Allo protocol",
"license": "MIT",
"author": "Wonderland",
"type": "module",
"scripts": {
"api:configure": "pnpm run --filter @grants-stack-indexer/hasura-config api:configure",
"bootstrap:all": "pnpm run --filter @grants-stack-indexer/bootstrap bootstrap:all",
"bootstrap:metadata": "pnpm run --filter @grants-stack-indexer/bootstrap bootstrap:metadata",
"bootstrap:pricing": "pnpm run --filter @grants-stack-indexer/bootstrap bootstrap:pricing",
"bootstrap:strategyTimings": "pnpm run --filter @grants-stack-indexer/bootstrap bootstrap:strategyTimings",
"build": "turbo run build",
"check-types": "turbo run check-types",
"clean": "turbo run clean",
"db:cache:migrate": "pnpm run --filter @grants-stack-indexer/migrations db:cache:migrate",
"db:cache:reset": "pnpm run --filter @grants-stack-indexer/migrations db:cache:reset",
"db:copy-cache": "pnpm run --filter @grants-stack-indexer/migrations db:copy-cache",
"db:create-databases": "pnpm run --filter @grants-stack-indexer/migrations db:create-databases",
"db:migrate": "pnpm run --filter @grants-stack-indexer/migrations db:migrate",
"db:reset": "pnpm run --filter @grants-stack-indexer/migrations db:reset",
"dev": "turbo run dev",
"format": "turbo run format",
"format:fix": "turbo run format:fix",
"preinstall": "npx only-allow pnpm",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"prepare": "husky",
"start": "turbo run start",
"test": "turbo run test",
"test:cov": "turbo run test:cov",
"test:e2e": "turbo run test:e2e",
"test:integration": "turbo run test:integration"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"*.js,*.ts,*.json": "eslint --fix",
"package.json": "sort-package-json"
},
"devDependencies": {
"@commitlint/config-conventional": "19.4.1",
"@ianvs/prettier-plugin-sort-imports": "4.3.1",
"@types/node": "20.3.1",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vitest/coverage-v8": "2.0.5",
"commitlint": "19.4.1",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"husky": "9.1.5",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"sort-package-json": "2.10.1",
"turbo": "2.1.1",
"typescript": "5.5.4",
"vitest": "2.0.5"
},
"packageManager": "pnpm@9.12.0",
"engines": {
"node": "20"
}
}