-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.39 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2.39 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
{
"name": "stellar-remittance",
"version": "1.0.0",
"type": "module",
"description": "Cross-border remittance platform on Stellar blockchain",
"private": true,
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "npm run dev --workspace=backend",
"dev:frontend": "npm run dev --workspace=frontend",
"build": "npm run build --workspaces",
"test:privacy": "node scripts/pii-scan.mjs",
"test:cleanup": "node scripts/cleanup-test-artifacts.mjs",
"test": "npm run test:privacy && vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:update-snapshots": "vitest run --update-snapshots",
"test:ui": "vitest --ui",
"test:parallel": "vitest run --workers 4",
"test:mobile": "cd mobile-tests && node run-tests.js",
"test:mutation": "stryker run",
"test:mutation:track": "node mutation-reports/tracker.js",
"test:mutation:ci": "npm run test:mutation && npm run test:mutation:track",
"test:environments": "vitest run --config vitest.environments.config.js",
"env:provision": "node test-environments/cli.js provision",
"env:status": "node test-environments/cli.js status",
"env:cleanup": "node test-environments/cli.js cleanup",
"env:list": "node test-environments/cli.js list",
"test:property": "vitest run --config vitest.property.config.js",
"test:property:watch": "vitest --config vitest.property.config.js",
"test:contracts:consumer": "vitest run --config vitest.contracts.config.js contracts/consumer",
"test:contracts:provider": "vitest run --config vitest.contracts.config.js contracts/provider",
"test:contracts:registry": "vitest run --config vitest.contracts.config.js contracts/registry.test.js",
"test:contracts": "npm run test:contracts:consumer && npm run test:contracts:provider && npm run test:contracts:registry"
},
"devDependencies": {
"@pact-foundation/pact": "^16.3.0",
"@stryker-mutator/core": "^9.6.0",
"@stryker-mutator/vitest-runner": "^9.6.0",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "14.3.1",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "4.1.1",
"@vitest/ui": "4.1.1",
"concurrently": "^8.2.2",
"fast-check": "^4.6.0",
"jsdom": "29.0.1",
"supertest": "^7.2.2",
"vitest": "4.1.1"
}
}