acrb-node-core 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README +120 -0
- package/README.md +1 -0
- package/dist/index.js +1 -0
- package/package.json +84 -0
package/package.json
ADDED
@@ -0,0 +1,84 @@
|
|
1
|
+
{
|
2
|
+
"name": "acrb-node-core",
|
3
|
+
"version": "1.0.0",
|
4
|
+
"description": "Node Core",
|
5
|
+
"main": "./dist/index.js",
|
6
|
+
"files": [
|
7
|
+
"dist"
|
8
|
+
],
|
9
|
+
"scripts": {
|
10
|
+
"lint": "npx eslint src test",
|
11
|
+
"lint:fix": "npm run lint -- --fix",
|
12
|
+
"prettier": "npx prettier src test --check",
|
13
|
+
"prettier:fix": "npm run prettier -- --write",
|
14
|
+
"build": "set NODE_OPTIONS=--openssl-legacy-provider && webpack --mode=production",
|
15
|
+
"build:dev": "webpack",
|
16
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
17
|
+
"version": "node scripts/version-history.js && git add HISTORY.md"
|
18
|
+
},
|
19
|
+
"keywords": [
|
20
|
+
"crb",
|
21
|
+
"node"
|
22
|
+
],
|
23
|
+
"author": "blackwhitelion",
|
24
|
+
"dependencies": {
|
25
|
+
"@google-cloud/logging-winston": "^5.1.0",
|
26
|
+
"@google-cloud/trace-agent": "^5.1.6",
|
27
|
+
"amqplib": "^0.10.3",
|
28
|
+
"awilix": "^7.0.3",
|
29
|
+
"awilix-express": "^7.0.0",
|
30
|
+
"axios": "^0.27.2",
|
31
|
+
"bcryptjs": "^2.4.3",
|
32
|
+
"cron": "^2.1.0",
|
33
|
+
"deepmerge": "^4.2.2",
|
34
|
+
"enum": "^3.0.4",
|
35
|
+
"express": "^4.18.1",
|
36
|
+
"express-openapi": "^11.1.0",
|
37
|
+
"express-openapi-validator": "^4.13.8",
|
38
|
+
"express-validator": "^6.14.1",
|
39
|
+
"express-winston": "^4.2.0",
|
40
|
+
"handlebars": "^4.7.7",
|
41
|
+
"i18next": "^21.8.8",
|
42
|
+
"i18next-fs-backend": "^1.1.4",
|
43
|
+
"i18next-http-middleware": "^3.2.1",
|
44
|
+
"jasperclient": "^1.2.1",
|
45
|
+
"jsonwebtoken": "^8.5.1",
|
46
|
+
"lodash": "^4.17.21",
|
47
|
+
"mime": "^3.0.0",
|
48
|
+
"moment": "^2.29.4",
|
49
|
+
"moment-timezone": "^0.5.41",
|
50
|
+
"mongodb": "^4.7.0",
|
51
|
+
"mongoose": "^7.1.1",
|
52
|
+
"mongoose-lean-virtuals": "^0.9.1",
|
53
|
+
"mysql2": "^2.3.3",
|
54
|
+
"nodemailer": "^6.7.5",
|
55
|
+
"sequelize": "^6.28.0",
|
56
|
+
"string-template": "^1.0.0",
|
57
|
+
"swagger-ui-express": "^4.4.0",
|
58
|
+
"winston": "^3.7.2",
|
59
|
+
"winston-mongodb": "^5.0.7",
|
60
|
+
"xml-js": "^1.6.11"
|
61
|
+
},
|
62
|
+
"devDependencies": {
|
63
|
+
"@babel/core": "^7.18.2",
|
64
|
+
"@babel/eslint-parser": "7.15.7",
|
65
|
+
"@preemptive/jsdefender-core": "file:assets/preemptive-jsdefender-core-2.4.0.tgz",
|
66
|
+
"@preemptive/jsdefender-webpack-plugin": "file:assets/preemptive-jsdefender-webpack-plugin-2.4.0.tgz",
|
67
|
+
"babel-loader": "^8.2.5",
|
68
|
+
"clean-webpack-plugin": "^3.0.0",
|
69
|
+
"css-loader": "^3.0.0",
|
70
|
+
"eslint": "7.32.0",
|
71
|
+
"eslint-config-google": "0.14.0",
|
72
|
+
"eslint-config-prettier": "8.3.0",
|
73
|
+
"eslint-plugin-prettier": "4.0.0",
|
74
|
+
"extract-css-chunks-webpack-plugin": "^4.7.5",
|
75
|
+
"file-loader": "^4.2.0",
|
76
|
+
"html-webpack-plugin": "^3.2.0",
|
77
|
+
"prettier": "2.4.0",
|
78
|
+
"script-loader": "^0.7.2",
|
79
|
+
"style-loader": "^0.23.1",
|
80
|
+
"terser-webpack-plugin": "^4.2.3",
|
81
|
+
"webpack": "^4.46.0",
|
82
|
+
"webpack-cli": "^3.3.12"
|
83
|
+
}
|
84
|
+
}
|