-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
70 lines (70 loc) · 1.96 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
65
66
67
68
69
70
{
"name": "nerosdk",
"version": "0.0.1",
"description": "nerosdk to create and deploy ai agents easily",
"main": "src/index.ts",
"author": {
"email": "abhishek.vishwakarma9@gmail.com",
"name": "Abhishek Vishwakarma",
"url": "https://cnvt.me/abhi"
},
"scripts": {
"start": "ts-node src/index.ts",
"dev": "nodemon src/index.ts",
"build": "tsc",
"lint": "eslint --fix src test",
"test": "jest"
},
"keywords": [],
"dependencies": {
"@metaplex-foundation/umi": "^0.9.2",
"@metaplex-foundation/umi-bundle-defaults": "^0.9.2",
"@slack/rtm-api": "^7.0.2",
"@slack/web-api": "^7.8.0",
"@solana/web3.js": "^1.98.0",
"@types/aws-sdk": "^2.7.0",
"ask-sdk-core": "^2.14.0",
"ask-sdk-model": "^1.86.0",
"aws-sdk": "^2.1310.0",
"axios": "^1.3.4",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"fastq": "^1.15.0",
"formdata-node": "^6.0.3",
"helmet": "^6.0.1",
"morgan": "^1.10.0",
"openai": "^4.68.4",
"redis": "^4.6.4",
"solana-agent-kit": "^1.2.0",
"source-map-support": "^0.5.21",
"twitter-api-v2": "^1.14.2",
"winston": "^3.8.2",
"winston-cloudwatch": "^6.1.1"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/jest": "^29.2.5",
"@types/morgan": "^1.9.4",
"@types/node": "^18.11.18",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-node-externals": "^3.0.0"
}
}