-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.15 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.15 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
66
67
68
{
"name": "anticapture",
"version": "0.3.1",
"description": "Anticapture Monorepo",
"scripts": {
"dashboard": "dotenv -- turbo run --filter=@anticapture/dashboard",
"indexer": "dotenv -- turbo run --filter=@anticapture/indexer",
"gateway": "dotenv -- turbo run --filter=@anticapture/api-gateway",
"gateful": "dotenv -- turbo run --filter=@anticapture/gateful",
"api": "dotenv -- turbo run --filter=@anticapture/api",
"client": "turbo run --filter=@anticapture/graphql-client",
"offchain-indexer": "turbo run --filter=@anticapture/offchain-indexer",
"address": "turbo run --filter=@anticapture/address-enrichment",
"dev": "bash scripts/dev.sh",
"clean": "turbo clean && rm -rf node_modules .turbo .parcel-cache coverage *.log *.tsbuildinfo",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"typecheck": "turbo typecheck",
"prepare": "husky",
"test": "turbo test",
"test:unit": "turbo test:unit"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"license": "MIT",
"packageManager": "[email protected]",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9",
"@next/eslint-plugin-next": "16.1.3",
"@types/node": "^20.16.5",
"@typescript-eslint/eslint-plugin": "^8",
"@typescript-eslint/parser": "^8",
"dotenv-cli": "^7.4.4",
"eslint": "^9",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^7.0.0",
"eslint-plugin-storybook": "^10.2.0",
"globals": "^17.3.0",
"husky": "^9.1.6",
"lint-staged": "^16.1.2",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"turbo": "^2.3.1",
"typescript": "^5.8.3",
"@railway/cli": "^4.31.0"
},
"pnpm": {
"overrides": {
"eslint-plugin-react-hooks>zod-validation-error": "^4.0.0"
}
},
"private": true,
"workspaces": [
"apps/dashboard",
"apps/graphql-client"
]
}