-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·108 lines (108 loc) · 2.91 KB
/
package.json
File metadata and controls
executable file
·108 lines (108 loc) · 2.91 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "bwc-api",
"version": "1.0.0",
"author": "NordWhale",
"license": "",
"main": "dist/index.js",
"engines": {
"node": "~6.9.1",
"npm": ">=3.10.0"
},
"scripts": {
"migration": "node src/migrations/internal/add.js",
"migrate": "npm run build && node dist/migrations/internal/run.js",
"prestart": "npm run -s build",
"start": "node dist/index.js",
"dev": "nodemon main.js",
"cron": "nodemon cmd.js",
"clean": "rimraf dist",
"build": "npm run clean && babel src -s -D -d dist",
"build:stage": "npm run clean && babel src -s -D -d dist",
"build:prod": "npm run clean && babel src -s -D -d dist",
"test": "jest --watch",
"lint": "esw -w src test"
},
"dependencies": {
"async-request": "^1.2.0",
"aws-sdk": "^2.479.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-node6": "^11.0.0",
"bcryptjs": "^2.4.3",
"bluebird": "^3.5.5",
"body-parser": "^1.19.0",
"build-url": "^1.3.3",
"cors": "^2.8.4",
"csvtojson": "^2.0.7",
"daikon": "^1.2.42",
"dateformat": "^3.0.3",
"docusign-esign": "^4.3.0",
"dotenv": "^4.0.0",
"express": "^4.17.1",
"express-session": "^1.16.2",
"formidable": "^1.1.1",
"fs": "0.0.1-security",
"fs-extra": "^7.0.0",
"gm": "^1.23.1",
"handlebars": "^4.1.2",
"helmet": "^3.18.0",
"html-boilerplate-pdf": "^5.1.1",
"html-pdf": "^2.2.0",
"htmlto": "^1.1.2",
"htmltopdf": "0.0.8",
"http-proxy-middleware": "^0.17.4",
"http-status": "^1.3.2",
"image-size": "^0.6.1",
"jade": "^1.11.0",
"joi": "^10.6.0",
"jpeg-js": "^0.3.5",
"jpeg-lossless-decoder-js": "^2.0.4",
"jsonwebtoken": "^8.5.1",
"libxmljs": "^0.19.1",
"lodash": "^4.17.10",
"md5": "^2.2.1",
"mkdirp": "^0.5.1",
"moment": "^2.24.0",
"moment-business": "^3.0.1",
"moment-duration-format": "^1.3.0",
"mongoose": "^5.6.0",
"mongoose-unique-validator": "^1.0.6",
"morgan": "^1.7.0",
"multer": "^1.3.0",
"node-cron": "^1.2.1",
"node-ses": "^2.2.1",
"nodejs-fs-utils": "^1.1.0",
"nodemailer": "^4.6.8",
"npm": "^6.9.0",
"passport": "^0.4.0",
"path": "^0.12.7",
"pdf": "^0.1.0",
"prince": "^1.6.3",
"pug": "^2.0.4",
"recaptcha2": "^1.3.2",
"request": "^2.85.0",
"request-promise": "^4.2.4",
"require-all": "^3.0.0",
"rimraf": "^2.6.3",
"socket.io": "^2.0.4",
"socket.io-client": "^2.0.4",
"to-arraybuffer": "^1.0.1",
"tracer": "^0.8.11",
"unzip": "^0.1.11",
"util": "^0.10.3",
"validator": "^9.1.1",
"xml2js": "^0.4.19"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^20.0.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.24.1",
"jest": "^20.0.0",
"nodemon": "^1.19.1",
"supertest": "^3.4.2"
},
"jest": {
"testEnvironment": "node"
}
}