jxp 2.12.2 → 2.12.3
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/bin/setup.js +1 -1
- package/package.json +15 -12
package/bin/setup.js
CHANGED
package/package.json
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jxp",
|
|
3
3
|
"description:": "An opinionated RESTful API library based on Mongoose and Restify. Make an API by just writing Mongoose models.",
|
|
4
|
-
"version": "2.12.
|
|
4
|
+
"version": "2.12.3",
|
|
5
5
|
"private": false,
|
|
6
6
|
"main": "libs/jxp.js",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"start": "node bin/server.js",
|
|
9
9
|
"test": "mocha --timeout 1000 -b --exit",
|
|
10
|
-
"wstest": "mocha test/wstest"
|
|
10
|
+
"wstest": "mocha test/wstest",
|
|
11
|
+
"setup": "node bin/setup.js"
|
|
11
12
|
},
|
|
12
13
|
"bin": {
|
|
14
|
+
"jxp": "bin/setup.js",
|
|
13
15
|
"jxp-setup": "bin/setup.js",
|
|
14
16
|
"jxp-add-admin": "bin/init_db.js"
|
|
15
17
|
},
|
|
@@ -27,34 +29,35 @@
|
|
|
27
29
|
"url": "https://github.com/j-norwood-young/jexpress-2/issues"
|
|
28
30
|
},
|
|
29
31
|
"dependencies": {
|
|
30
|
-
"axios": "^1.2.
|
|
32
|
+
"axios": "^1.2.3",
|
|
31
33
|
"bcryptjs": "^2.4.3",
|
|
32
|
-
"commander": "^
|
|
33
|
-
"config": "^3.3.
|
|
34
|
+
"commander": "^10.0.0",
|
|
35
|
+
"config": "^3.3.9",
|
|
34
36
|
"dotenv": "^16.0.3",
|
|
35
|
-
"glob": "8.0
|
|
37
|
+
"glob": "8.1.0",
|
|
36
38
|
"js-yaml": "4.1.0",
|
|
37
39
|
"json2csv": "^5.0.7",
|
|
38
|
-
"jsonwebtoken": "^
|
|
40
|
+
"jsonwebtoken": "^9.0.0",
|
|
39
41
|
"jstransformer-markdown-it": "^3.0.0",
|
|
40
42
|
"jxp-helper": "^1.4.0",
|
|
41
|
-
"mkdirp": "^1.
|
|
42
|
-
"
|
|
43
|
+
"mkdirp": "^2.1.3",
|
|
44
|
+
"moment": "^2.29.4",
|
|
45
|
+
"mongoose": "6.8.4",
|
|
43
46
|
"mongoose-friendly": "^0.1.4",
|
|
44
47
|
"morgan": "^1.10.0",
|
|
45
|
-
"nodemailer": "^6.
|
|
48
|
+
"nodemailer": "^6.9.0",
|
|
46
49
|
"nodemailer-smtp-transport": "^2.7.4",
|
|
47
50
|
"path": "^0.12.7",
|
|
48
51
|
"pug": "^3.0.2",
|
|
49
52
|
"querystring": "^0.2.1",
|
|
50
53
|
"rand-token": "^1.0.1",
|
|
51
54
|
"readline-sync": "^1.4.10",
|
|
52
|
-
"restify": "^
|
|
55
|
+
"restify": "^11.0.0",
|
|
53
56
|
"restify-cors-middleware2": "^2.2.0",
|
|
54
57
|
"restify-errors": "^8.0.2",
|
|
55
58
|
"traverse": "^0.6.7",
|
|
56
59
|
"underscore": "^1.13.6",
|
|
57
|
-
"ws": "^8.
|
|
60
|
+
"ws": "^8.12.0"
|
|
58
61
|
},
|
|
59
62
|
"devDependencies": {
|
|
60
63
|
"chai": "^4.3.7",
|