-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.28 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.28 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
{
"name": "@sluder/breeze",
"version": "1.0.0",
"license": "MIT",
"author": "Zachary Sluder",
"keywords": [],
"description": "",
"type": "module",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build/**/*"
],
"scripts": {
"build": "tsc --project tsconfig.json && tsc-alias -p tsconfig.json",
"test": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js",
"prepare": "npm run build"
},
"dependencies": {
"@indigo-labs/dexter": "https://github.com/IndigoProtocol/dexter.git#sluder/iris-sdk",
"@indigo-labs/iris-sdk": "1.0.4",
"@lucid-evolution/lucid": "^0.3.36",
"@slack/web-api": "^7.3.2",
"@types/express": "^4.17.21",
"axios": "^0.26.1",
"cors": "^2.8.5",
"express": "^4.19.2",
"node-cache": "^5.1.2",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"twilio": "^5.2.2",
"winston": "^3.17.0"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@types/cors": "^2.8.17",
"@types/jest": "^29.5.14",
"@types/winston-syslog": "^2.4.3",
"jest": "^29.7.0",
"ts-jest": "^29.3.2",
"tsc-alias": "^1.8.6",
"typescript": "^5.0.3",
"winston-syslog": "^2.7.0"
}
}