forked from WorkSpaceMan/jxp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·70 lines (70 loc) · 1.82 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
{
"name": "jxp",
"description:": "An opinionated RESTful API library based on Mongoose and Restify. Make an API by just writing Mongoose models.",
"version": "2.14.0",
"private": false,
"main": "libs/jxp.js",
"scripts": {
"start": "node bin/server.js",
"test": "mocha --timeout 1000 -b --exit",
"wstest": "mocha test/wstest",
"setup": "node bin/setup.js"
},
"bin": {
"jxp": "bin/setup.js",
"jxp-setup": "bin/setup.js",
"jxp-add-admin": "bin/init_db.js"
},
"repository": {
"type": "git",
"url": "git://github.com/j-norwood-young/jexpress-2.git"
},
"keywords": [
"api",
"mongoose"
],
"author": "Jason Norwood-Young <[email protected]> (https://github.com/j-norwood-young/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/j-norwood-young/jexpress-2/issues"
},
"dependencies": {
"axios": "^1.2.3",
"bcryptjs": "^2.4.3",
"commander": "^10.0.0",
"config": "^3.3.9",
"dotenv": "^16.0.3",
"glob": "8.1.0",
"js-yaml": "4.1.0",
"json2csv": "^5.0.7",
"jsonwebtoken": "^9.0.0",
"jstransformer-markdown-it": "^3.0.0",
"jxp-helper": "^1.4.0",
"mkdirp": "^2.1.3",
"moment": "^2.29.4",
"mongoose": "6.8.4",
"mongoose-friendly": "^0.1.4",
"morgan": "^1.10.0",
"node-cache": "^5.1.2",
"nodemailer": "^6.9.0",
"nodemailer-smtp-transport": "^2.7.4",
"path": "^0.12.7",
"pug": "^3.0.2",
"querystring": "^0.2.1",
"rand-token": "^1.0.1",
"readline-sync": "^1.4.10",
"restify": "^11.0.0",
"restify-cors-middleware2": "^2.2.0",
"restify-errors": "^8.0.2",
"traverse": "^0.6.7",
"underscore": "^1.13.6",
"ws": "^8.12.0"
},
"devDependencies": {
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"mocha": "^10.2.0",
"moment": "^2.29.4",
"should": "^13.2.3"
}
}