-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.81 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
71
72
73
74
{
"name": "comnet-dispatcher",
"version": "1.1.1",
"description": "COMNET Dispatcher",
"main": "app.js",
"scripts": {
"lint": "esw *.js database servers --color",
"test": "npm run lint",
"build": "tsc",
"dev": "tsnd --watch --ignore-watch node_modules --respawn src/app.ts",
"publish": "np"
},
"np": {
"publish": false,
"message": "v%s release"
},
"keywords": [
"dispatcher"
],
"contributors": [
{
"name": "Matheus Medeiros Sarmento"
},
{
"name": "Mikael Mello"
}
],
"license": "BSD-2-Clause",
"dependencies": {
"@types/archiver": "^3.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/bluebird": "^3.5.31",
"@types/cookie-parser": "^1.4.2",
"@types/json2csv": "^4.5.0",
"@types/jsonwebtoken": "^8.3.4",
"@types/lodash": "^4.14.149",
"@types/mkdirp": "^0.5.2",
"@types/mongoose": "^5.5.17",
"@types/multer": "^1.3.10",
"@types/node": "^12.7.5",
"@types/nodemailer": "^6.2.1",
"@types/socket.io": "^2.1.4",
"@types/tmp": "^0.1.0",
"archiver": "^2.1.1",
"bcryptjs": "^2.4.3",
"bluebird": "~3.5.0",
"body-parser": "^1.17.1",
"cookie-parser": "^1.4.3",
"dispatcher-protocol": "^4.0.0",
"express": "^4.17.1",
"json2csv": "^4.1.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"log4js": "^6.1.0",
"mkdirp": "^0.5.1",
"mongoose": "^5.5.17",
"multer": "^1.4.2",
"nodemailer": "^4.1.2",
"rimraf": "^2.6.2",
"sanitize-filename": "^1.6.3",
"socket.io": "^2.3.0",
"tmp": "0.0.33",
"tslib": "^1.10.0",
"typescript": "^3.6.3"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-watch": "^3.1.4",
"np": "^7.6.2",
"ts-node-dev": "^1.0.0-pre.43"
}
}