-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.64 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
69
70
{
"name": "anticapture",
"version": "0.3.1",
"description": "Anticapture Monorepo",
"scripts": {
"dashboard": "dotenv -- turbo run --filter=@anticapture/dashboard",
"indexer": "dotenv -- turbo run --filter=@anticapture/indexer",
"gateful": "dotenv -- turbo run --filter=@anticapture/gateful",
"authful": "dotenv -- turbo run --filter=@anticapture/authful",
"user-api": "dotenv -- turbo run --filter=@anticapture/user-api",
"api": "dotenv -- turbo run --filter=@anticapture/api",
"codegen": "dotenv -- node scripts/wait-for-gateful.mjs && dotenv -- turbo run codegen",
"client": "turbo run --filter=@anticapture/client",
"client-docs": "turbo run --filter=@anticapture/client-docs",
"offchain-indexer": "turbo run --filter=@anticapture/offchain-indexer",
"address": "turbo run --filter=@anticapture/address-enrichment",
"relayer": "dotenv -- turbo run --filter=@anticapture/relayer",
"dev": "bash scripts/dev.sh",
"clean": "turbo clean && rm -rf node_modules .turbo .parcel-cache coverage *.log *.tsbuildinfo",
"lint": "turbo lint",
"build": "turbo build",
"lint:fix": "turbo lint:fix",
"typecheck": "turbo typecheck",
"prepare": "husky",
"test": "turbo test",
"test:unit": "turbo test:unit",
"test:e2e": "turbo test:e2e",
"test:e2e:headed": "turbo test:e2e:headed",
"test:e2e:ui": "turbo test:e2e:ui",
"changeset": "changeset"
},
"license": "MIT",
"packageManager": "pnpm@10.10.0",
"dependencies": {
"husky": "^9.1.6"
},
"devDependencies": {
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@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",
"lint-staged": "^16.1.2",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"turbo": "^2.3.1",
"typescript": "^5.8.3"
},
"pnpm": {
"overrides": {
"@typescript-eslint/project-service@8.53.0>@typescript-eslint/tsconfig-utils": "8.53.0",
"@typescript-eslint/project-service@8.53.0>@typescript-eslint/types": "8.53.0",
"eslint-plugin-react-hooks>zod-validation-error": "^4.0.0"
}
},
"private": true
}