-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.06 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.06 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
{
"private": true,
"type": "module",
"scripts": {
"setup": "bash tools/setup.sh",
"build": "bash tools/generate-config.sh && turbo run build",
"build:packages": "bash tools/generate-config.sh && turbo run build --filter='./packages/*'",
"dev": "turbo run dev",
"dev:packages": "turbo run dev --filter='./packages/*' --parallel",
"android": "turbo run android --filter=mobile",
"ios": "turbo run ios --filter=mobile",
"mobile:start": "turbo run start --filter=mobile",
"pre-push": "./tools/pre-push",
"lint": "turbo run lint",
"lint:fix": "turbo run lint -- --fix",
"lint:i18n": "node tools/i18n-lint.cjs",
"lint:copyright": "node tools/copyright-header.mjs --fix",
"lint:copyright:check": "node tools/copyright-header.mjs --check",
"format": "oxfmt \"**/*.{ts,tsx,md}\"",
"generate:all-apis": "kubb generate --config backend-kubb.config.ts && kubb generate --config algod-kubb.config.ts && kubb generate --config indexer-kubb.config.ts",
"test": "bash tools/generate-config.sh && turbo run test -- --coverage",
"generate:config": "bash tools/generate-config.sh",
"bump-version": "bash tools/bump-version.sh"
},
"devDependencies": {
"@babel/runtime": "catalog:",
"@kubb/cli": "catalog:",
"@kubb/core": "catalog:",
"@kubb/plugin-msw": "catalog:",
"@kubb/plugin-oas": "catalog:",
"@kubb/plugin-react-query": "catalog:",
"@kubb/plugin-ts": "catalog:",
"@kubb/plugin-zod": "catalog:",
"@perawallet/wallet-core-devtools": "workspace:*",
"@vitest/coverage-v8": "catalog:",
"eslint": "catalog:",
"eslint-plugin-react-native": "^5.0.0",
"eslint-plugin-unused-imports": "catalog:",
"oxfmt": "catalog:",
"oxlint": "^1.54.0",
"oxlint-tsgolint": "^0.16.0",
"turbo": "^2.7.2",
"util": "catalog:",
"vitest": "catalog:"
},
"packageManager": "pnpm@10.28.1",
"name": "with-vite",
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3"
],
"patchedDependencies": {
"expo-sqlite@14.0.6": "patches/expo-sqlite@14.0.6.patch"
}
}
}