-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.73 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
{
"name": "chat_bot",
"version": "3.4.2",
"description": "",
"main": "index.js",
"scripts": {
"dev": "npm run build && npm run start",
"start": "node dist/main/app.js",
"debug": "node --inspect=0.0.0.0:9222 --nolazy dist/main/app.js",
"build": "rimraf dist && tsc && node scripts/copyfiles.js",
"up": "npm run build && docker compose up ",
"down": "docker compose down",
"restart": "npm run down && npm run up",
"test": "node --experimental-vm-modules node_modules/.bin/jest --passWithNoTests --silent --noStackTrace --runInBand",
"test:verbose": "node --experimental-vm-modules node_modules/.bin/jest --passWithNoTests --runInBand",
"test:unit": "npm test -- --watch -c jest-unit.config.js",
"test:integration": "npm test -- --watch -c jest-integration.config.js",
"test:staged": "npm test -- --findRelatedTests",
"test:ci": "npm test -- --coverage --detectOpenHandles"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chmodr": "^1.0.0",
"@types/jest": "^29.2.2",
"@types/lokijs": "^1.5.7",
"@types/node": "^18.11.9",
"@types/uuid": "^8.3.1",
"debug": "^4.3.2",
"eslint-config-standard-with-typescript": "^23.0.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-mock-extended": "^3.0.1",
"lint-staged": "^13.0.3",
"ncp": "^2.0.0",
"npm-check": "^6.0.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.4.0",
"typescript": "^4.8.4"
},
"dependencies": {
"@wppconnect-team/wppconnect": "^1.35.1",
"chmodr": "^1.2.0",
"fast-glob": "^3.2.12",
"file-type": "^18.0.0",
"lokijs": "^1.5.12",
"npm": "^8.1.3",
"qrcode-terminal": "^0.12.0",
"uuid": "^9.0.0"
}
}