-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.62 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "api-cubosfi",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/jonathan-lopes/api-cubosfi.git"
},
"bugs": {
"url": "https://github.com/jonathan-lopes/api-cubosfi/issues"
},
"homepage": "https://github.com/jonathan-lopes/api-cubosfi#readme",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon ./src/index.js",
"start": "pm2 start ecosystem.config.js",
"migrate:latest": "knex migrate:latest --env development",
"migrate:rollback": "knex migrate:rollback --env development",
"seed": "knex seed:run",
"lint": "npx prettier --check . && eslint . --ext js,--report-unused-disable-directives --max-warnings 0",
"commit": "cz",
"prepare": "husky",
"pretest": "cross-env NODE_ENV=test knex migrate:latest",
"test": "jest",
"posttest": "cross-env NODE_ENV=test knex migrate:rollback --all",
"test:coverage": "npm run pretest && jest --coverage --silent --noStackTrace"
},
"keywords": [],
"author": "Jonathan Lopes",
"license": "ISC",
"dependencies": {
"@logtail/node": "^0.4.21",
"@logtail/winston": "^0.4.21",
"bcrypt": "^5.1.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"express": "^4.19.1",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^7.2.0",
"express-slow-down": "^2.0.1",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"knex": "^3.1.0",
"morgan": "^1.10.0",
"node-schedule": "^2.1.1",
"pg": "^8.11.3",
"pm2": "^5.3.1",
"serve-favicon": "^2.5.0",
"swagger-ui-express": "^5.0.0",
"winston": "^3.12.0",
"winston-daily-rotate-file": "^5.0.0",
"yup": "^1.4.0",
"yup-locales": "^1.2.21"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@faker-js/faker": "^8.4.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.12",
"better-sqlite3": "^9.4.3",
"commitizen": "^4.3.0",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"semantic-release": "^23.0.5",
"supertest": "^6.3.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}