-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
67 lines (67 loc) · 1.79 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
{
"name": "smartoffice-backend",
"description": "Backend for SmartOffice project",
"version": "1.0.0",
"contributors": [
{
"name": "Timur Kh. Evgazhukov",
"email": "[email protected]"
}
],
"dependencies": {
"@types/bluebird": "^3.5.33",
"@types/node": "^12.19.12",
"@types/redis": "^2.8.28",
"@types/validator": "^10.11.2",
"axios": "^0.21.1",
"babel-plugin-inline-dotenv": "^1.6.0",
"body-parser": "^1.19.0",
"chalk": "^4.1.0",
"connect": "3.6.6",
"continuation-local-storage": "^3.2.1",
"express": "4.16.3",
"glob": "^7.1.4",
"mailgun-js": "^0.22.0",
"minimist": "^1.2.5",
"morgan": "^1.9.1",
"numeral": "^2.0.6",
"pg": "^8.5.1",
"redis": "^3.0.2",
"reflect-metadata": "^0.1.13",
"request": "^2.88.0",
"sc-errors": "^1.4.1",
"sc-framework-health-check": "^2.0.0",
"sc-hot-reboot": "^1.0.0",
"scc-broker-client": "^6.1.0",
"selenium-webdriver": "^4.0.0-alpha.8",
"sequelize": "^5.22.3",
"sequelize-cli": "^5.5.0",
"sequelize-typescript": "^1.1.0",
"serve-static": "1.13.2",
"socketcluster": "^16.0.1",
"socketcluster-client": "^14.3.1",
"xml2js": "^0.4.19",
"xmlbuilder": "^13.0.2"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-env": "^1.7.0",
"jest": "^24.8.0",
"sequelize-typescript-migration": "0.0.1-beta.3"
},
"keywords": [
"websocket",
"server",
"realtime",
"cluster",
"scalable"
],
"readmeFilename": "README.md",
"scripts": {
"start": "babel-node server.js",
"dev": "tsc && babel-node server.js",
"init": "tsc && babel-node ./src/init/dom24x7.init.js",
"test": "tsc && babel-node ./src/test/channels.test.js",
"migration": "tsc && babel-node ./src/makeMigration.js"
}
}