-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 915 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 915 Bytes
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
{
"name": "autofi-compliance-engine",
"version": "1.0.0",
"description": "Automated tax and compliance escrow engine for AutoFi ecosystem",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "ts-node src/server.ts",
"start": "node dist/server.js",
"test": "jest",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"precommit": "yarn lint && yarn format"
},
"dependencies": {
"@stellar/stellar-sdk": "^11.0.0",
"crypto": "^1.0.1",
"express": "^4.18.0"
},
"devDependencies": {
"@types/express": "^4.17.0",
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"ts-node": "^10.9.0",
"jest": "^29.0.0",
"@types/jest": "^29.0.0",
"ts-jest": "^29.0.0",
"eslint": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"prettier": "^3.0.0"
}
}