-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 2.48 KB
/
package.json
File metadata and controls
50 lines (50 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
{
"name": "iidi",
"version": "0.0.1",
"private": true,
"description": "",
"keywords": [],
"license": "MIT",
"engines": {
"node": "^22.0.0"
},
"scripts": {
"ci:all": "npm ci; (cd ./federator && npm ci); (cd ./transfer-inbound && npm ci); (cd ./transfer-outbound && npm ci); (cd ./demo-transfer-dashboard && npm ci);",
"dev": "docker compose -f ./docker-compose.dev.yaml up",
"predev": "npm run dev:down; (cp -n ./node-dev-docker-env/reference.env.node-dev-docker-env-overrides ./federator/.env.node-dev-docker-env-overrides); (cp -n ./node-dev-docker-env/reference.env.node-dev-docker-env-overrides ./transfer-inbound/.env.node-dev-docker-env-overrides); (cp -n ./node-dev-docker-env/reference.env.node-dev-docker-env-overrides ./transfer-outbound/.env.node-dev-docker-env-overrides); (cp -n ./node-dev-docker-env/reference.env.node-dev-docker-env-overrides ./demo-transfer-dashboard/.env.node-dev-docker-env-overrides);",
"dev:debug": "DOCKER_API_COMMAND=docker-debug docker compose -f ./docker-compose.dev.yaml up",
"predev:debug": "npm run predev",
"dev:down": "docker compose -f ./docker-compose.dev.yaml down -v",
"prettier": "prettier --check .",
"prettier:write": "prettier --write --loglevel warn .",
"eslint": "eslint --max-warnings 0 --cache .",
"eslint:ci": "eslint .",
"eslint:fix": "eslint --fix . || true",
"posteslint:fix": "npm run prettier:write",
"typecheck:federator": "cd ./federator && npm run typecheck",
"typecheck:transfer-inbound": "cd ./transfer-inbound && npm run typecheck",
"typecheck:transfer-outbound": "cd ./transfer-outbound && npm run typecheck",
"typecheck": "trap 'RC=1' ERR; npm run typecheck:federator; npm run typecheck:transfer-inbound; npm run typecheck:transfer-outbound; exit $RC"
},
"devDependencies": {
"@eslint/compat": "^1.2.4",
"@eslint/js": "^9.17.0",
"@microsoft/eslint-plugin-sdl": "^1.0.1",
"@parcel/watcher": "^2.5.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-no-secrets": "^2.1.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-security": "^3.0.1",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"typescript-eslint": "^8.19.1"
}
}