-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.24 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
{
"name": "bitbarbaros",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"format": "prettier --write .",
"test": "jest --runInBand ",
"test:watch": "jest --watch --coverage false --runInBand",
"test:coverage": "jest --coverage --runInBand",
"dev": "node --watch --trace-warnings src/index",
"start": "node ./src/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.473.0",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"cpf-cnpj-validator": "^1.0.3",
"diacritics": "^1.3.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"handlebars": "^4.7.8",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"knex": "^3.0.1",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.7",
"pg": "^8.11.3",
"sharp": "^0.33.0",
"sqlite3": "^5.1.6"
},
"devDependencies": {
"axios": "^1.6.2",
"child_process": "^1.0.2",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"kill-port": "^2.0.1",
"mock-knex": "^0.4.12",
"prettier": "^3.1.0",
"supertest": "^6.3.3"
}
}