forked from transifex/transifex-delivery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2 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
{
"name": "transifex-delivery",
"version": "3.0.0",
"description": "Transifex Content Delivery Service",
"keywords": [
"transifex",
"i18n",
"l10n",
"localization"
],
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"eslint": "eslint src/",
"start": "node ./src/index.js",
"start-web": "node ./src/index.js --only=web",
"start-worker": "node ./src/index.js --only=worker",
"start-dev": "node ./node_modules/nodemon/bin/nodemon -L -e js,yml --watch ./src --watch ./config ./src/index.js",
"start-debugger": "node --inspect-brk=0.0.0.0 ./src/index.js",
"test": "NODE_ENV=test nyc --reporter=text --all --reporter=html mocha --timeout 5000 --exit \"./tests/**/*.spec.js\""
},
"engines": {
"node": ">=14"
},
"author": "Transifex",
"homepage": "https://github.com/transifex/transifex-delivery",
"license": "Apache-2.0",
"dependencies": {
"@google-cloud/storage": "^6.9.2",
"@sentry/node": "^7.37.0",
"aws-sdk": "^2.1312.0",
"axios": "^1.3.2",
"axios-retry": "^3.4.0",
"body-parser": "^1.20.1",
"bull": "^4.10.4",
"chai-http": "^4.3.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dayjs": "^1.11.7",
"express": "^4.18.2",
"express-prom-bundle": "^6.6.0",
"express-rate-limit": "^6.7.0",
"glob": "^8.1.0",
"ioredis": "^5.3.0",
"joi": "^14.3.1",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"nconf": "^0.12.0",
"nconf-yaml": "^1.0.2",
"newrelic": "^9.10.0",
"node-cache": "^5.1.2",
"prom-client": "^14.1.1",
"rate-limiter-flexible": "^2.4.1",
"uuid": "^8.3.2",
"winston": "^3.8.2",
"winston-transport": "^4.5.0",
"yargs": "^17.6.2"
},
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^8.33.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"mocha": "^10.2.0",
"nock": "^13.3.0",
"nodemon": "^2.0.20",
"nyc": "^15.1.0",
"sinon": "^15.0.1",
"supertest": "^6.3.3"
}
}