-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 1.7 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@indigo-labs/iris",
"version": "1.0.0",
"author": "Zachary Sluder",
"keywords": [
"Iris",
"Cardano",
"DEX"
],
"description": "",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"type": "module",
"scripts": {
"build": "tsc",
"indexer": "NODE_NO_WARNINGS=1 node --es-module-specifier-resolution=node ./dist/indexer.js",
"api": "NODE_NO_WARNINGS=1 node --es-module-specifier-resolution=node ./dist/api.js",
"test": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js --verbose",
"jest": "jest"
},
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@babel/preset-typescript": "^7.24.1",
"@cardano-ogmios/client": "^6.9.0",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.17",
"@types/helmet": "^4.0.0",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.197",
"@types/mysql": "^2.15.21",
"@types/node": "^18.11.18",
"@types/winston": "^2.4.4",
"@types/winston-syslog": "^2.4.0",
"@types/ws": "^8.5.5",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^4.9.4"
},
"dependencies": {
"axios": "^1.5.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helmet": "^7.0.0",
"lodash": "^4.17.21",
"lucid-cardano": "^0.10.7",
"mysql2": "^3.6.0",
"node-cache": "^5.1.2",
"pg": "^8.11.5",
"queue-promise": "^2.2.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.17",
"winston-daily-rotate-file": "^4.7.1",
"winston-syslog": "^2.7.0",
"ws": "^8.13.0"
}
}