-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.37 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
101
102
103
104
105
{
"name": "helperbit-backend",
"version": "1.0.0",
"description": "Helperbit backend",
"dependencies": {
"@turf/turf": "^4.7.3",
"bcrypt": "4.0.1",
"bitcoin-core": "^3.0.0",
"bitcoinjs-lib": "^5.1.7",
"body-parser": "^1.19.0",
"colors": "^1.4.0",
"compression": "^1.7.4",
"connect-redis": "^4.0.4",
"disposable-email-domains": "^1.0.56",
"express": "^4.17.1",
"express-rate-limit": "^5.1.1",
"express-session": "^1.17.0",
"fb": "^2.0.0",
"feedparser-promised": "^1.5.0",
"googleapis": "^34.0.0",
"helmet": "^3.22.0",
"hpp": "^0.2.3",
"http-parser-js": "^0.4.12",
"jade": "^1.11.0",
"jsonwebtoken": "^8.5.1",
"lightning-charge-client": "^0.1.12",
"mailchimp-api": "^2.0.7",
"minio": "^5.0.2",
"moment": "^2.22.1",
"moment-range": "^4.0.2",
"mongoose": "^5.9.9",
"morgan": "^1.9.1",
"multiparty": "^4.2.1",
"nocache": "^2.1.0",
"node-geocoder": "^3.25.0",
"node-metainspector": "^1.3.0",
"node-telegram-bot-api": "^0.24.0",
"nodemailer": "^4.6.4",
"passport": "^0.4.1",
"passport-facebook": "^2.1.1",
"passport-google-oauth": "^1.0.0",
"passport-linkedin-oauth2": "^2.0.0",
"passport-twitter": "^1.0.4",
"randomcolor": "^0.5.4",
"randomstring": "^1.1.5",
"redis": "^3.0.2",
"request": "^2.87.0",
"request-promise-native": "^1.0.8",
"sharp": "^0.25.2",
"shortid": "^2.2.15",
"socket.io": "^2.3.0",
"socket.io-redis": "^5.2.0",
"twitter": "^1.7.1",
"u2f": "^0.1.3",
"underscore": "^1.9.2"
},
"author": "Davide Gessa",
"devDependencies": {
"@types/express": "^4.17.1",
"@types/geojson": "^7946.0.7",
"@types/jasmine": "^1.3.3",
"@types/mongoose": "^5.7.10",
"@types/node": "^12.6.9",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"babel-eslint": "^10.1.0",
"content-disposition": "^0.5.3",
"depcheck": "^0.9.2",
"eslint": "^6.8.0",
"eslint-config-es2015": "^1.1.0",
"form-data": "^2.3.2",
"frisby": "=0.8.5",
"husky": "^1.0.0-rc.9",
"jasmine-node": "<2.0.0",
"sync-exec": "^0.6.2",
"typescript": "^3.8.3"
},
"devDependenciesDisabled": {
"aglio": "^2.3.0"
},
"scripts": {
"depcheck": "depcheck",
"start": "node dist/server.js",
"start-traced": "node --trace-warnings dist/server.js",
"start-job": "node --trace-warnings dist/jobserver.js",
"build_O": "tsc --build tsconfig.json",
"build": "bash build.sh",
"test": "bash build.sh --test && ./node_modules/.bin/jasmine-node dist/gis/ dist/helpers/ --forceexit --verbose",
"test-integration": "jasmine-node dist/modules/ --growl --color",
"postinstall": "",
"lint": "eslint source/ --ext ts",
"lintfix": "eslint source/ --fix --ext ts",
"build-doc2": "aglio -t default -i source/modules/api.doc.md -o docs/api.html",
"build-doc": "aglio --theme-variables streak --theme-full-width --theme-template triple -t default -i source/modules/api.doc.md -o docs/api.html",
"start-doc": "aglio -i source/modules/api.doc.md -s -t default",
"deploy-doc": "npm run build-doc && scp docs/api.html [email protected]:/var/www/data/helperbit/api.html",
"gitlab-runner": "gitlab-runner exec docker tests-integration"
},
"husky": {
"hooks": {
"pre-commit": "npm run lintfix",
"pre-push": ""
}
}
}