-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.48 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": "payment-intelligence-modules",
"private": true,
"version": "0.2.0",
"type": "module",
"description": "Payment Intelligence Modules — browser-only suite of ISO 20022 payment review tools.",
"license": "MIT",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"typecheck": "tsc -b --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"audit:privacy": "bash scripts/privacy-audit.sh src",
"data:iban": "tsx scripts/build-iban-registry.ts",
"data:iban:check": "tsx scripts/build-iban-registry.ts --check",
"data:bic": "tsx scripts/build-bic-snapshot.ts",
"data:bic:check": "tsx scripts/build-bic-snapshot.ts --check",
"data:cbpr": "tsx scripts/build-cbprplus-schema-manifest.ts",
"data:cbpr:check": "tsx scripts/build-cbprplus-schema-manifest.ts --check",
"typecheck:scripts": "tsc -p tsconfig.node.json --noEmit",
"verify": "pnpm lint && pnpm format:check && pnpm typecheck && pnpm test && pnpm audit:privacy && pnpm data:iban:check && pnpm data:bic:check && pnpm data:cbpr:check && pnpm build"
},
"dependencies": {
"lucide-react": "0.453.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "6.27.0"
},
"devDependencies": {
"@eslint/js": "9.13.0",
"@playwright/test": "1.48.2",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "14.5.2",
"@types/node": "20.16.13",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@typescript-eslint/eslint-plugin": "8.11.0",
"@typescript-eslint/parser": "8.11.0",
"@vitejs/plugin-react": "4.3.3",
"autoprefixer": "10.4.20",
"eslint": "9.13.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-react": "7.37.1",
"eslint-plugin-react-hooks": "5.0.0",
"eslint-plugin-react-refresh": "0.4.13",
"globals": "15.11.0",
"jsdom": "25.0.1",
"postcss": "8.4.47",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.8",
"tailwindcss": "3.4.14",
"tailwindcss-animate": "1.0.7",
"tsx": "^4.21.0",
"typescript": "5.6.3",
"typescript-eslint": "8.11.0",
"vite": "5.4.10",
"vitest": "2.1.3"
}
}