-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
100 lines (100 loc) · 3.46 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "www",
"version": "0.0.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve --fix",
"build-css": "node-sass public/scss -o public/css --output-style compressed",
"watch-scss": "node-sass public/scss -o public/css --output-style compressed --watch",
"logger": "pm2 start configs/logger.production.config.js --merge-logs",
"start": "npm run clone-or-update-config && npm run development",
"start-docker": "npm run clone-or-update-config && npm run docker-development",
"development": "pm2 start configs/ecosystem.development.config.js --merge-logs",
"production": "pm2 start configs/ecosystem.production.config.js --merge-logs",
"tms-health2go": "pm2 start configs/health2go.production.config.js --merge-logs",
"docker-development": "pm2 start configs/ecosystem.development.config.js --merge-logs --no-daemon",
"docker-production": "pm2 start configs/ecosystem.production.config.js --merge-logs --no-daemon",
"clone-or-update-config": ". ./scripts/clone-or-update-config.sh",
"test": "NODE_ENV=test && mocha CI_test --no-opts --config ../../../../configs/test.development.config.js --exit"
},
"dependencies": {
"@iota/core": "^1.0.0-beta.21",
"@iota/http-client": "^1.0.0-beta.21",
"@microsoft/microsoft-graph-client": "^2.0.0",
"@sendgrid/mail": "^6.5.2",
"@vue/cli": "^3.7.0",
"@vue/cli-service": "^4.1.2",
"await-exec": "^0.1.2",
"await-semaphore": "^0.1.3",
"babel-core": "^6.26.3",
"bluebird": "~2.10.2",
"bn.js": "^5.1.1",
"body-parser": "^1.18.3",
"bootstrap": "^4.1.3",
"cetustek-invoice": "git+https://github.com/youmeb-lab/cetustek-invoice.git",
"cetustek-invoice-nodejs": "^0.1.2",
"chalk": "^2.4.2",
"colors": "^1.3.3",
"commander": "^3.0.2",
"compression": "^1.7.3",
"connect-cache-manifest": "^0.2.2",
"connect-multiparty": "^2.2.0",
"cookie-parser": "~1.4.0",
"cookie-session": "^1.3.2",
"crypto": "^1.0.1",
"d3": "^5.9.2",
"dotenv": "^8.2.0",
"elliptic": "^6.5.2",
"ethereumjs-tx": "^1.3.7",
"express": "^4.16.4",
"glob": "^7.1.1",
"google-auth-library": "^5.10.1",
"googleapis": "^44.0.0",
"hash.js": "^1.1.7",
"imagemin-webpack-plugin": "^2.4.2",
"jquery": "^3.4.0",
"load-google-maps-api": "^1.3.3",
"mailgun-js": "^0.22.0",
"md5": "^2.2.1",
"moment": "^2.22.2",
"mongodb": "^3.2.7",
"morgan": "^1.7.0",
"mustache": "^4.0.0",
"mysql-promise": "~1.4.0",
"node-gcm": "^1.0.2",
"node-sass": "^4.14.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"pm2": "^4.2.3",
"popper.js": "^1.14.7",
"postcss-cssnext": "^3.1.0",
"python-shell": "^1.0.7",
"qrcode": "^1.3.3",
"randomstring": "^1.1.5",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"sha256": "^0.2.0",
"shopify-node-api": "^1.11.1",
"simple-oauth2": "^3.0.1",
"soap-as-promised": "^1.26.0",
"socket.io": "^2.1.1",
"tappay-nodejs": "^2.0.11",
"trytes": "^1.3.2",
"universal-analytics": "^0.4.20",
"uuid": "^2.0.3",
"vue": "^2.5.17",
"vue-router": "^3.0.6",
"vue-template-compiler": "^2.6.10",
"web3": "^1.2.6",
"winston": "^3.2.1",
"winston-loggly-bulk": "^3.0.1",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@microsoft/microsoft-graph-types": "^1.12.0",
"chai": "^4.2.0",
"mocha": "^7.1.2",
"node-sass": "^4.13.1",
"sass-loader": "^7.3.1",
"supertest": "^4.0.2"
}
}