-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.31 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
{
"name": "@ssi/workspace",
"version": "0.1.0",
"private": true,
"description": "Self-Sovereign Identity platform — poly-repo workspace orchestrating Stellar Soroban, EVM Solidity, ZK circuits, off-chain services and the frontend dashboard.",
"license": "MIT",
"engines": {
"node": ">=20.10.0",
"pnpm": ">=8.0.0"
},
"workspaces": [
"packages/sdk",
"packages/zk-circuits",
"apps/api-gateway",
"apps/service-bridge-relayer",
"apps/service-ipfs",
"apps/frontend",
"packages/contracts-evm"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"test": "turbo run test",
"clean": "turbo run clean && rimraf .turbo node_modules",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,sol}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md,sol}\"",
"typecheck": "turbo run typecheck",
"prepare": "simple-git-hooks",
"contracts:build:stellar": "make -C packages/contracts-stellar build",
"contracts:build:evm": "forge build --root packages/contracts-evm",
"contracts:deploy:stellar": "make -C packages/contracts-stellar deploy",
"contracts:deploy:evm": "forge script --root packages/contracts-evm script/Deploy.s.sol --rpc-url ${EVM_RPC_URL:-http://localhost:8545} --broadcast",
"zk:compile": "bash packages/zk-circuits/scripts/compile.sh"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^20.11.0",
"eslint": "^9.0.0",
"eslint-plugin-react-hooks": "^7.1.1",
"lint-staged": "^17.2.0",
"prettier": "^3.9.6",
"prettier-plugin-solidity": "^1.4.0",
"rimraf": "^5.0.5",
"simple-git-hooks": "^2.13.1",
"turbo": "^1.13.0",
"typescript": "^5.4.5",
"typescript-eslint": "^8.65.0"
},
"packageManager": "pnpm@8.15.4",
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,sol}": [
"prettier --write"
],
"*.py": [
"bash -c 'cd apps/service-ai-fraud && ruff check --fix --output-format concise \"$@\"' --",
"bash -c 'cd apps/service-ai-fraud && mypy --ignore-missing-imports --show-error-codes \"$@\"' --"
]
},
"dependencies": {
"@changesets/cli": "^2.27.1"
}
}