-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
75 lines (75 loc) · 2.1 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
{
"name": "transifex-delivery",
"version": "4.3.0",
"description": "Transifex Content Delivery Service",
"keywords": [
"transifex",
"i18n",
"l10n",
"localization"
],
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"eslint": "eslint src/ tests/",
"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": ">=18"
},
"author": "Transifex",
"homepage": "https://github.com/transifex/transifex-delivery",
"license": "Apache-2.0",
"dependencies": {
"@azure/identity": "^3.4.2",
"@azure/storage-blob": "^12.17.0",
"@google-cloud/storage": "^6.12.0",
"@sentry/node": "^7.110.0",
"aws-sdk": "^2.1599.0",
"axios": "^1.6.8",
"axios-retry": "^4.1.0",
"body-parser": "^1.20.2",
"bull": "^4.12.2",
"chai-http": "^4.4.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dayjs": "^1.11.10",
"express": "^4.19.2",
"express-prom-bundle": "^7.0.0",
"express-rate-limit": "^7.2.0",
"ioredis": "^5.3.2",
"joi": "^17.12.3",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"nconf": "^0.12.1",
"nconf-yaml": "^1.0.2",
"newrelic": "^11.15.0",
"node-cache": "^5.1.2",
"prom-client": "^15.1.1",
"rate-limit-redis": "^4.2.0",
"rate-limiter-flexible": "^4.0.1",
"uuid": "^8.3.2",
"winston": "^3.13.0",
"winston-transport": "^4.7.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"chai": "^4.4.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"mocha": "^10.4.0",
"nock": "^13.5.4",
"nodemon": "^3.1.0",
"nyc": "^15.1.0",
"sinon": "^17.0.1",
"supertest": "^6.3.4"
}
}