-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 915 Bytes
/
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
{
"author": "Augusto Preis Tomasi",
"name": "node-backend-utils",
"version": "1.1.1",
"description": "Utils para backend",
"scripts": {
"lint": "eslint",
"build": "tsc --target ES6",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@eslint/js": "^9.15.0",
"@types/bcrypt": "^5.0.2",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.9.0",
"babel-jest": "^29.7.0",
"eslint": "^9.15.0",
"eslint-plugin-jest": "^28.9.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0"
},
"dependencies": {
"bcrypt": "^5.1.1",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"typeorm": "^0.3.20",
"winston": "^3.17.0"
}
}