-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 3.53 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 3.53 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
71
72
{
"name": "stellar-escrow",
"private": true,
"scripts": {
"dev": "npm run dev --workspace=app",
"build": "npm run build --workspace=app",
"test": "npm run test --workspaces --if-present",
"test:contract": "cargo test --manifest-path contract/Cargo.toml",
"test:contract:edge": "cargo test --manifest-path contract/Cargo.toml --test edge_cases",
"test:contract:security": "cargo test --manifest-path contract/Cargo.toml --test security",
"test:contract:integration": "cargo test --manifest-path contract/Cargo.toml --test integration",
"test:contract:performance": "cargo test --manifest-path contract/Cargo.toml --test performance -- --nocapture",
"test:contract:stress": "cargo test --manifest-path contract/Cargo.toml --test stress -- --nocapture",
"test:contract:coverage": "cargo llvm-cov --manifest-path contract/Cargo.toml --workspace --lcov --output-path contract/coverage/lcov.info --html --output-dir contract/coverage/html",
"test:coverage": "npm run test:coverage --workspaces --if-present",
"test:e2e": "npm run test:e2e --workspace=components",
"test:e2e:app": "npm run test:e2e --workspace=app",
"test:app": "npm run test --workspace=app",
"test:app:coverage": "npm run test:coverage --workspace=app",
"test:security": "npm run test --workspace=security",
"test:performance": "npm run test:performance --workspace=api",
"test:performance:load": "artillery run tests/load/load-test.yml",
"test:performance:stress": "artillery run tests/load/stress-test.yml",
"test:performance:spike": "artillery run tests/load/spike-test.yml",
"test:performance:benchmark": "npm run test:benchmark --workspace=api",
"test:performance:scalability": "npm run test:scalability --workspace=api",
"test:performance:comprehensive": "node scripts/performance-test-runner.js",
"test:browser": "playwright test",
"test:browser:ui": "playwright test --ui",
"test:browser:report": "playwright show-report",
"test:regression": "npm run test:ci --workspace=testing/regression",
"test:regression:report": "npm run report --workspace=testing/regression",
"test:regression:analyze": "npm run analyze --workspace=testing/regression",
"test:uat": "npm run test:ci --workspace=testing/uat",
"test:uat:report": "npm run report --workspace=testing/uat",
"test:uat:automate": "npm run automate --workspace=testing/uat",
"test:a11y": "npm run test:ci --workspace=testing/accessibility",
"test:a11y:report": "npm run report --workspace=testing/accessibility",
"lint": "eslint . --ext .ts,.tsx,.js,.svelte",
"lint:fix": "eslint . --ext .ts,.tsx,.js,.svelte --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,svelte,json,css}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,svelte,json,css}\"",
"test:orchestrate": "node scripts/orchestrate.js",
"test:orchestrate:suite": "node scripts/orchestrate.js --suite",
"test:analytics": "node scripts/test-analytics.js",
"test:maintain": "node scripts/maintain-tests.js"
},
"devDependencies": {
"@playwright/test": "^1.43.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"artillery": "^2.0.8",
"eslint": "^8.57.0",
"prettier": "^3.2.0",
"prettier-plugin-svelte": "^3.2.0",
"serve": "^14.2.3"
},
"workspaces": [
"app",
"components",
"api",
"state",
"security",
"testing/regression",
"testing/uat",
"testing/accessibility",
"tests"
],
"dependencies": {
"@tailwindcss/postcss": "^4.2.2"
}
}