-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.53 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.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
{
"name": "core-exchange-node-example",
"private": true,
"version": "1.0.1",
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
"type": "module",
"author": "David Neal <dneal@plaid.com> (https://reverentgeek.com)",
"contributors": [],
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"predev": "pnpm --filter @apps/shared build",
"predev:auth": "pnpm --filter @apps/shared build",
"predev:api": "pnpm --filter @apps/shared build",
"predev:app": "pnpm --filter @apps/shared build",
"dev:auth": "pnpm --filter @apps/auth dev",
"dev:api": "pnpm --filter @apps/api dev",
"dev:app": "pnpm --filter @apps/app dev",
"dev": "NODE_EXTRA_CA_CERTS=\"$HOME/Library/Application Support/Caddy/pki/authorities/local/root.crt\" concurrently -n auth,api,app -c blue,green,magenta \"pnpm dev:auth\" \"pnpm dev:api\" \"pnpm dev:app\"",
"build": "pnpm -r --filter \"@apps/*\" run build",
"caddy": "sudo caddy run --config ./caddyfile",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky || true"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"concurrently": "^9.2.1",
"eslint": "^10.2.0",
"globals": "^17.5.0",
"husky": "^9.1.7",
"typescript": "^6.0.2"
},
"dependencies": {
"helmet": "^8.1.0"
}
}