-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
58 lines (58 loc) · 1.6 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
{
"name": "bubblebot",
"version": "1.0.0",
"main": "index.js",
"typings": "index",
"license": "MIT",
"dependencies": {
"@types/node": "^17.0.21",
"axios": "^0.26.1",
"cors": "^2.8.5",
"crypto-ts": "^1.0.2",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"knex": "^1.0.4",
"mercadopago": "^1.5.12",
"moment": "^2.29.1",
"mysql": "^2.18.1",
"mysql2": "^2.3.3",
"qrcode": "^1.5.0",
"qrcode-terminal": "^0.12.0",
"redis": "^4.0.4",
"sha512-crypt-ts": "^0.1.27",
"ts-node": "^10.7.0",
"uuid": "^8.3.2",
"whatsapp-web.js": "latest"
},
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only --ignore-watch node_modules src/index.ts",
"test": "jest --forceExit",
"lint": "eslint . --fix --ext .json",
"build": "rimraf ./build && tsc",
"start": "npm run build && node build/index.js",
"start:prod": "node build/index.js"
},
"devDependencies": {
"@swc/core": "^1.2.156",
"@swc/jest": "^0.2.20",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/mercadopago": "^1.5.6",
"@types/moment": "^2.13.0",
"@types/qrcode": "^1.4.2",
"@types/qrcode-terminal": "^0.12.0",
"@types/redis": "^4.0.11",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "2.5.1",
"rimraf": "^3.0.2",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.2"
}
}