forked from diangogav/evolution-api
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.32 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.32 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
{
"name": "evolution-api",
"version": "1.0.50",
"type": "module",
"scripts": {
"test": "bun test --setup=test/setup.ts",
"test:coverage": "bun test --setup=test/setup.ts --coverage",
"dev": "bun run --watch src/index.ts",
"lint": "eslint --ignore-pattern .gitignore .",
"lint:fix": "bun run lint -- --fix",
"prepare": "if [ \"$NODE_ENV\" != \"production\" ]; then husky install; fi",
"build": "tsc"
},
"dependencies": {
"@elysiajs/bearer": "^1.4.3",
"@elysiajs/cors": "^1.4.1",
"@elysiajs/swagger": "^1.3.1",
"@sendgrid/mail": "^8.1.6",
"bcrypt": "^6.0.0",
"dotenv": "^17.2.3",
"elysia": "^1.4.22",
"jsonwebtoken": "^9.0.3",
"pg": "^8.18.0",
"pino": "^10.3.0",
"pino-pretty": "^13.1.3",
"resend": "6.4.2",
"typeorm": "^0.3.28"
},
"devDependencies": {
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@faker-js/faker": "^10.2.0",
"@types/jsonwebtoken": "^9.0.10",
"bun-types": "^1.3.8",
"eslint": "^9.39.2",
"globals": "^16.5.0",
"husky": "^9.1.7",
"install": "^0.13.0",
"lint-staged": "^16.2.7",
"typescript-eslint": "^8.54.0"
},
"module": "src/index.js",
"lint-staged": {
"*.(js|ts)": "npm run lint:fix"
}
}