forked from eclipse-iofog/Controller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.35 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
75
76
77
78
79
80
81
{
"name": "iofogcontroller",
"version": "1.0.0",
"description": "ioFog Controller project for Eclipse IoFog @ iofog.org \\nCopyright (c) 2018 Edgeworx, Inc.",
"main": "./src/main.js",
"author": "Saeid Baghbidi",
"contributors": [
"Kilton Hopkins <kilton@edgeworx.io>",
"Saeid Baghbidi",
"Pavel Kazlou",
"Egor Krylovich",
"Iryna Laryionava",
"Maryna Lipnitskaya",
"Dmitriy Kudasov",
"Dmitry Stolbunov",
"Darya Busel",
"Alexander Shpak",
"Kate Lukashick",
"Eugene Pankov",
"Maksim Chepelev",
"Tetiana Yatsiuk",
"Sergey Valevich"
],
"license": {
"type": "EPL-2.0",
"url": "https://www.eclipse.org/legal/epl-v20.html"
},
"bugs": {
"email": "edgemaster@iofog.org"
},
"homepage": "https://www.iofog.org",
"repository": {
"type": "git",
"url": "https://github.com/ioFog/Controller"
},
"scripts": {
"start": "NODE_ENV=production node ./src/main.js start",
"start-dev": "NODE_ENV=development node ./src/main.js start",
"build": "export NODE_ENV=production && cd src/sequelize && ../../node_modules/.bin/sequelize db:migrate && ../../node_modules/.bin/sequelize db:seed:all",
"postinstall": "export NODE_ENV=production && cd src/sequelize && ../../node_modules/.bin/sequelize db:migrate && ../../node_modules/.bin/sequelize db:seed:all",
"lint": "./node_modules/.bin/eslint \"**/*.js\""
},
"preferGlobal": true,
"bin": {
"iofog-controller": "src/main.js"
},
"dependencies": {
"body-parser": "^1.18.3",
"command-line-args": "^5.0.2",
"command-line-usage": "^5.0.5",
"continuation-local-storage": "^3.2.1",
"cookie-parser": "^1.4.3",
"daemonize2": "^0.4.2",
"ejs": "^2.6.1",
"express": "^4.16.3",
"formidable": "^1.2.1",
"fs": "^0.0.1-security",
"ftp": "^0.3.10",
"helmet": "^3.13.0",
"jsonschema": "^1.2.4",
"morgan": "^1.9.1",
"nconf": "^0.10.0",
"nodemailer": "^4.6.8",
"nodemailer-smtp-transport": "^2.7.4",
"path": "^0.12.7",
"portscanner": "^2.2.0",
"querystring": "^0.2.0",
"retry-as-promised": "^3.1.0",
"sequelize": "^4.39.0",
"sequelize-cli": "^4.1.1",
"sqlite3": "^4.0.2",
"string-format": "^2.0.0",
"umzug": "^2.1.0",
"underscore": "^1.9.1",
"winston": "^3.1.0",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"eslint": "^5.6.1"
}
}