-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.82 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": "nymph",
"version": "1.0.0",
"description": "The artificial intelligence powered by opensource.",
"author": "Taiwan Web Technology Promotion Organization",
"homepage": "https://web-tech.tw",
"license": "MIT",
"main": "app.js",
"scripts": {
"export-openapi": "node export_openapi.js",
"dev": "nodemon app.js",
"start": "node app.js",
"lint": "npx lint-staged",
"lint:es": "eslint \"*.js\" \"src/**/*.js\"",
"lint:es:fix": "eslint \"*.js\" \"src/**/*.js\" --fix",
"prepare": "husky install"
},
"lint-staged": {
"*.js": "eslint"
},
"dependencies": {
"@discordjs/rest": "^2.4.0",
"@langchain/community": "^0.3.11",
"@langchain/google-genai": "^0.1.2",
"@langchain/redis": "^0.1.0",
"@line/bot-sdk": "^9.4.4",
"@matrix-org/matrix-sdk-crypto-nodejs": "^0.2.0-beta.1",
"axios": "^1.3.4",
"cors": "^2.8.5",
"discord-api-types": "^0.37.103",
"discord.js": "^14.16.3",
"discordjs-reaction-role": "^3.1.0",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.21.1",
"express-validator": "^6.14.3",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^9.0.2",
"langchain": "^0.3.5",
"matrix-bot-sdk": "^0.7.1",
"mongoose": "^6.13.3",
"node-cache": "^5.1.2",
"request-ip": "^3.3.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.2",
"ua-parser-js": "^1.0.39"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.17.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jsdoc": "^48.2.3",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"nodemon": "^2.0.13"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}