-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.38 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 3.38 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "tariffshield",
"version": "0.1.0",
"private": true,
"license": "MIT",
"description": "Soroban-backed customs-bond collateral rail for US importers — Stellar testnet build",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"dev": "concurrently -k -n api,web -c blue,green \"npm run dev:api\" \"npm run dev:web\"",
"dev:api": "npm run dev --workspace=apps/api",
"dev:web": "npm run dev --workspace=apps/web",
"migrate": "npm run migrate --workspace=apps/api",
"migrate:rollback": "npm run migrate:rollback --workspace=apps/api",
"benchmark": "npm run benchmark --workspace=apps/api",
"contract:build": "cd contracts && cargo build --target wasm32-unknown-unknown --release",
"contract:test": "cd contracts && cargo test",
"contract:deploy": "tsx scripts/deploy-contracts.ts",
"seed": "tsx scripts/seed.ts",
"e2e": "tsx scripts/e2e.ts",
"admin": "tsx scripts/admin.ts",
"upgrade": "tsx scripts/upgrade.ts",
"setup-env": "tsx scripts/setup-env.ts",
"dep-graph": "tsx scripts/dep-graph.ts",
"backup-state": "tsx scripts/backup-state.ts",
"verify-upgrade": "tsx scripts/verify-upgrade.ts",
"rollback-upgrade": "tsx scripts/rollback-upgrade.ts",
"list-wasm-hashes": "tsx scripts/list-wasm-hashes.ts",
"test:scripts": "tsx --test --test-force-exit scripts/__tests__/*.test.ts",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"generate:types": "openapi-typescript docs/security/openapi.yaml -o packages/api-types/index.ts",
"watch:contracts": "cd contracts/tariff-shield && cargo watch -x test -w src/",
"prepare": "husky install || true"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
],
"*.{ts,tsx,json,yaml,md}": [
"prettier --write"
],
"apps/api/**/*.{ts,tsx}": [
"bash -c 'tsc --noEmit -p apps/api/tsconfig.json'"
],
"apps/web/**/*.{ts,tsx}": [
"bash -c 'tsc --noEmit -p apps/web/tsconfig.json'"
]
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/exec": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"@semantic-release/github": "^10.0.0",
"@semantic-release/npm": "^13.1.5",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"concurrently": "^9.2.4",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^8.57.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"openapi-typescript": "^7.0.0",
"prettier": "^3.0.0",
"semantic-release": "^25.0.8",
"tsx": "^4.19.0",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"commander": "^15.0.0",
"lightningcss": "^1.33.0",
"lightningcss-darwin-arm64": "^1.33.0"
},
"overrides": {
"form-data": "^4.0.6",
"fast-uri": "^3.1.4",
"shell-quote": "^1.10.0",
"axios": "^1.19.0",
"postcss": "^8.5.25",
"sharp": "^0.35.3",
"brace-expansion": "^2.0.2",
"js-yaml": "^4.1.1",
"picomatch": "^4.0.3",
"tar": "^7.5.1",
"sigstore": "^3.2.0"
},
"optionalDependencies": {
"@tailwindcss/oxide-linux-x64-gnu": "^4.3.3",
"lightningcss-linux-x64-gnu": "^1.33.0"
}
}