-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.2 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
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "sappio",
"description": "A minimal node app with logging.",
"version": "1.0.0",
"type": "module",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/trouchet/sappio.git"
},
"imports": {
"#utils/*": "./src/utils/*.js",
"#utils/*.js": "./src/utils/*.js",
"#core/*": "./src/core/*.js",
"#core/*.js": "./src/core/*.js",
"#cutils/*": "./src/core/utils/*.js",
"#cutils/*.js": "./src/core/utils/*.js",
"#config/*": "./src/config/*.js",
"#config/*.js": "./src/config/*.js"
},
"keywords": [
"nodejs"
],
"author": "Bruno Peixoto <brunolnetto@gmail.com> (https://www.linkedin.com/in/brunolnetto/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/trouchet/sappio/issues",
"email": "brunolnetto@gmail.com"
},
"homepage": "https://github.com/trouchet/sappio#readme",
"scripts": {
"hooks:prepare": "husky install",
"init": "./scripts/npm-init.sh",
"list": "./scripts/npm-list.sh -c .",
"start": "nodemon --trace-warnings ./src/index.js",
"build": "./scripts/build.sh",
"update": "bash ./scripts/npm-update.sh",
"test:clean": "jest --clearCache",
"test": "npm run test:clean && jest --detectOpenHandles",
"test:ci": "jest --ci --collect-coverage --coverage",
"test:watch": "jest --watchAll --collect-coverage --coverage",
"up": "npm run init && npm run docker:deploy --tag=$npm_config_tag --from=$npm_config_from --to=$npm_config_to",
"docker:clean": "./scripts/docker-clean.sh $npm_config_tag",
"docker:deploy": "./scripts/docker-deploy.sh $npm_config_tag $npm_config_from $npm_config_to",
"docker:watch": "./scripts/docker-deploy.sh $npm_config_id",
"pm2:deploy": "pm2 start ./src/config/ecosystem.config.cjs",
"eslint:github-action": "eslint src/",
"format": "prettier --write src/ && npx eslint src/ && prettier --check .",
"get-version": "echo $npm_package_version"
},
"devDependencies": {
"@babel/preset-env": "^7.25.3",
"bats": "^1.11.0",
"bats-assert": "github:ztombol/bats-assert",
"bats-support": "github:ztombol/bats-support",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.4",
"jest": "^29.7.0",
"jest-slow-test-reporter": "^1.0.0",
"prettier": "^3.3.3",
"pug": "^3.0.3",
"sinon": "^18.0.0",
"supertest": "^7.0.0",
"swagger-jsdoc": "^6.2.8"
},
"engines": {
"node": " >=16.0.0",
"npm": ">=6.9.0"
},
"dependencies": {
"@babel/preset-env": "^7.25.3",
"@logtail/node": "^0.4.21",
"@logtail/winston": "^0.4.23",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-actuator": "^1.8.4",
"express-jwt": "^8.4.1",
"express-rate-limit": "^7.4.0",
"express-route-parser": "^1.0.5",
"fs": "^0.0.1-security",
"helmet": "^7.1.0",
"http-errors": "^2.0.0",
"jest-progress-bar-reporter": "^1.0.25",
"jsrsasign": "^11.1.0",
"jwt-decode": "^4.0.0",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"nodemon": "^3.1.4",
"pg": "^8.12.0",
"serve-favicon": "^2.5.0",
"swagger-ui-express": "^5.0.1",
"winston": "^3.13.1"
}
}