generated from defi-wonderland/ts-turborepo-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.92 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
{
"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": {
"build": "turbo run build",
"check-types": "turbo run check-types",
"clean": "turbo run clean",
"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: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": "[email protected]+sha256.46f1bbc8f8020aa9869568c387198f1a813f21fb44c82f400e7d1dbde6c70b40",
"engines": {
"node": "20"
}
}