-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.37 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.37 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
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
{
"name": "@agtm/node-framework",
"version": "5.1.2",
"description": "Framework nodejs baseado no ExpressJs",
"bin": {
"nf-monitor": "scripts/monitor.mjs"
},
"scripts": {
"publish-patch": "npm version patch && npm publish --access public && git push",
"publish-minor": "npm version minor && npm publish --access public && git push",
"publish-major": "npm version major && npm publish --access public && git push",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest",
"lint": "npx eslint --ext .mjs,.js --fix .",
"lint:test": "npx eslint --ext .mjs,.js .",
"update": "npm update @agtm/util && npm list @agtm/util",
"audit": "npm audit --omit=dev"
},
"author": "André Timermann <andre@timermann.com.br>",
"license": "ISC",
"main": "./index.mjs",
"dependencies": {
"@agtm/util": "^4.2.4",
"@airbnb/node-memwatch": "^2.0.0",
"blessed": "^0.1.81",
"body-parser": "^1.19.0",
"chalk": "^5.3.0",
"change-case": "^4.1.2",
"compression": "^1.7.4",
"consolidate": "^0.16.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"figlet": "^1.5.2",
"filesize": "^10.0.8",
"fs-extra": "^11.1.1",
"handlebars": "^4.7.7",
"helmet": "^7.0.0",
"js-yaml": "^4.1.0",
"json5": "^2.2.3",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"morgan": "^1.10.0",
"node-cron": "^3.0.2",
"socket.io": "^4.7.1",
"socket.io-client": "^4.7.2",
"winston": "^3.8.2",
"winston-transport": "^4.5.0"
},
"pkg": {
"assets": [
"node_modules/config"
]
},
"files": [
"library",
"index.mjs",
"config.default.yaml",
"config.development.yaml",
"config.production.yaml"
],
"repository": {
"type": "git",
"url": "git+https://github.com/atimermann/node-framework.git"
},
"bugs": {
"url": "https://github.com/atimermann/node-framework/issues"
},
"homepage": "https://github.com/atimermann/node-framework#readme",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@babel/eslint-parser": "^7.22.6",
"@babel/preset-env": "^7.22.6",
"babel-jest": "^29.6.2",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.44.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.6.0"
}
}