-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.35 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.35 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
48
49
{
"name": "db-chatbot",
"version": "0.0.2-development",
"description": "",
"main": "./build/index.js",
"scripts": {
"prepare": "npm run build",
"test": "jest",
"demo": "ts-node ./scripts/demo.ts",
"build": "tsc -p tsconfig.build.json",
"semantic-release": "semantic-release"
},
"author": "Nadav Weisler",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@jest/globals": "^29.7.0",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.4",
"cz-conventional-changelog": "^3.3.0",
"jest": "^29.7.0",
"semantic-release": "^24.0.0",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"dependencies": {
"csv-parse": "^5.5.6",
"csv-parser": "^3.0.0",
"dotenv": "^16.4.5",
"fs": "^0.0.1-security",
"fs-extra": "^11.2.0",
"jest-environment-jsdom": "^29.7.0"
},
"repository": {
"type": "git",
"url": "https://github.com/GoldenLabHuji/DBbot.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
}
}