-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.98 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
56
{
"name": "prax-wallet",
"private": true,
"license": "(MIT OR Apache-2.0)",
"packageManager": "pnpm@9.4.0+sha512.f549b8a52c9d2b8536762f99c0722205efc5af913e77835dbccc3b0b0b2ca9e7dc8022b78062c17291c48e88749c70ce88eb5a74f1fa8c4bf5e18bb46c8bd83a",
"type": "module",
"scripts": {
"add:tgz": "tsx scripts/add-tgz.ts",
"all-check": "pnpm clean && pnpm install && pnpm lint && pnpm build && pnpm test",
"build": "turbo build",
"clean": "turbo clean",
"clean:modules": "rm -rf node_modules apps/*/node_modules packages/*/node_modules pnpm-lock.yaml",
"clean:vitest-mjs": "find . -type f -name 'vite*.config.ts.timestamp-*-*.mjs' -ls -delete",
"compile": "turbo compile",
"dev": "turbo dev",
"format": "turbo format",
"format:prettier": "prettier --write .",
"format:syncpack": "syncpack format",
"lint": "turbo lint -- --max-warnings 0",
"lint:fix": "turbo lint -- --fix",
"lint:prettier": "prettier --check .",
"lint:rust": "turbo lint:rust",
"lint:syncpack": "syncpack lint",
"postinstall": "syncpack list-mismatches",
"pretest": "playwright install",
"test": "turbo test",
"test:rust": "turbo test:rust",
"watch-and-repack": "./scripts/watch-and-repack.sh",
"zip": "pnpm tsx apps/extension/src/utils/zip-extension.ts"
},
"dependencies": {
"@bufbuild/protobuf": "^1.x",
"@connectrpc/connect": "^1.x",
"@connectrpc/connect-web": "^1.x"
},
"devDependencies": {
"@changesets/cli": "^2.27.8",
"@penumbra-zone/configs": "1.1.0",
"@repo/tailwind-config": "workspace:*",
"@repo/tsconfig": "workspace:*",
"@storybook/react-vite": "8.2.9",
"@turbo/gen": "^2.1.1",
"@types/node": "^22.5.4",
"@vitest/browser": "^2.0.5",
"jsdom": "^25.0.0",
"playwright": "^1.47.0",
"prettier": "^3.3.3",
"syncpack": "^13.0.0",
"tailwindcss": "^3.4.10",
"tsx": "^4.19.0",
"turbo": "^2.1.1",
"typescript": "^5.5.4",
"typescript-eslint": "^8.16.0",
"vitest": "1.x"
}
}