-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.72 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.72 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
{
"name": "e2e-test-suite",
"private": true,
"type": "module",
"scripts": {
"clean": "npx turbo run clean && echo 'root: cleaning' && rimraf node_modules .turbo && echo '\n🧼 Clean completed'",
"test": "npx turbo run test && echo '🧪 Test completed'",
"test:packages": "npx turbo run test --filter=\"./packages/**/*\" && echo '🧪 Test packages completed'",
"test:axelar:devnet": "echo 'Disabled: cd modules/axelar && pnpm run test:devnet'",
"test:axelar:testnet": "echo 'Disabled: cd modules/axelar && pnpm run test:testnet'",
"test:axelar:mainnet": "cd modules/axelar && pnpm run test:mainnet",
"test:cosmos:devnet": "cd modules/cosmos && pnpm run test:devnet",
"test:cosmos:testnet": "cd modules/cosmos && pnpm run test:testnet",
"test:cosmos:mainnet": "cd modules/cosmos && pnpm run test:mainnet",
"test:evm:devnet": "cd modules/evm && pnpm run test:devnet",
"test:evm:testnet": "cd modules/evm && pnpm run test:testnet",
"test:evm:mainnet": "cd modules/evm && pnpm run test:mainnet",
"lint": "npx turbo run lint && echo '🧹 Lint completed'",
"lint:packages": "npx turbo run lint --filter=\"./packages/**/*\" && echo '🧹 Lint packages completed'",
"check-types": "npx turbo run check-types && echo '🔎 Check types completed'",
"check-types:packages": "npx turbo run check-types --filter=\"./packages/**/*\" && echo '🔎 Check types packages completed'"
},
"devDependencies": {
"@antfu/ni": "^0.23.0",
"@types/chai": "^5.0.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tsup": "^8.2.4",
"turbo": "^2.1.0"
},
"packageManager": "pnpm@9.7.0"
}