-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.39 KB
/
package.json
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
{
"name": "marlowe-oracle-service",
"version": "0.0.1",
"description": "Service for integrating oracles with Marlowe contracts",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"dev": "nodemon ./src/index.ts",
"build": "tsc",
"lint-check": "prettier src tests --check --config .prettierrc.json",
"lint-write": "prettier src tests --write --config .prettierrc.json",
"deploy-example": "npx ts-node tests/deploy-example-contract.ts",
"deploy-bridge": "npx ts-node tests/deploy-bridge.ts"
},
"author": "",
"license": "ISC",
"type": "module",
"files": [
"dist/src",
"LICENSE",
"README.md",
"package.json"
],
"dependencies": {
"@marlowe.io/adapter": "^0.2.0-beta",
"@marlowe.io/runtime-core": "^0.2.0-beta",
"@marlowe.io/wallet": "^0.2.0-beta",
"commander": "^11.1.0",
"eslint": "^8.54.0",
"eslint-config-airbnb-base": "^15.0.0",
"figlet": "^1.7.0",
"fp-ts": "^2.16.1",
"lucid-cardano": "^0.10.7",
"marlowe-language-core-v1-txpipe": "0.2.2-beta",
"marlowe-runtime-lifecycle-txpipe": "0.2.2-beta",
"marlowe-runtime-rest-client-txpipe": "0.2.2-beta",
"tslog": "^4.9.2"
},
"devDependencies": {
"@types/figlet": "^1.5.8",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"nodemon": "^3.0.1",
"prettier": "^3.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
}
}