-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 968 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 968 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"scripts": {
"test:ci": "echo 'Running integration tests...' && .github/workflows/integration-tests.yml",
"test:backend": "cd fluxapay_backend && npm test",
"test:frontend": "cd fluxapay_frontend && npm test",
"test:e2e": "cd fluxapay_frontend && npm run test:e2e",
"test:smoke": "cd fluxapay_frontend && npm run test:e2e:smoke",
"detect-route-drift": "node scripts/detect-route-drift.js",
"ci:setup": "echo 'Setting up CI environment...' && docker-compose -f docker-compose.ci.yml up -d",
"ci:teardown": "docker-compose -f docker-compose.ci.yml down"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"react-hook-form": "^7.71.1",
"yup": "^1.7.1"
},
"devDependencies": {
"@types/yup": "^0.29.14",
"tailwindcss": "^4.2.1"
},
"packageManager": "pnpm@10.26.1+sha512.664074abc367d2c9324fdc18037097ce0a8f126034160f709928e9e9f95d98714347044e5c3164d65bd5da6c59c6be362b107546292a8eecb7999196e5ce58fa"
}