-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
77 lines (77 loc) · 2.26 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
{
"name": "@globocom/backstage-functions",
"version": "0.4.7",
"description": "Remote serverless code executor",
"main": "index.js",
"scripts": {
"test": "REDIS_KEY_PREFIX=test nyc mocha --ui bdd --recursive test/",
"send_cover": "nyc report --reporter=text-lcov | coveralls",
"start_dev": "which nf && nf -j Procfile.local -e .env.local start",
"start_sandbox": "NUM_CPUS=1 STORAGE=inmemory nf -j Procfile.sandbox -e .env.local start",
"lint": "eslint lib test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/backstage/functions.git"
},
"keywords": [
"serverless",
"sandbox",
"functions",
"backstage"
],
"engines": {
"node": ">=8.13.0"
},
"author": "Backstage Team <backstage@corp.globo.com>",
"license": "MIT",
"dependencies": {
"@globocom/backstage-functions-sandbox": "0.5.5",
"@opentelemetry/api": "^0.18.1",
"@opentelemetry/core": "^0.19.0",
"@opentelemetry/exporter-collector-grpc": "^0.19.0",
"@opentelemetry/instrumentation": "^0.19.0",
"@opentelemetry/instrumentation-express": "^0.16.0",
"@opentelemetry/instrumentation-http": "^0.19.0",
"@opentelemetry/instrumentation-ioredis": "^0.16.0",
"@opentelemetry/node": "^0.19.0",
"@opentelemetry/tracing": "^0.19.0",
"async": "^2.0.1",
"body-parser": "^1.15.2",
"deepcopy": "^0.6.3",
"express": "^4.14.0",
"express-opentracing": "^0.1.1",
"gelf": "^2.0.1",
"ioredis": "^3.1.4",
"jaeger-client": "^3.18.0",
"jsonschema": "^1.1.0",
"lodash": "^4.16.2",
"morgan": "^1.7.0",
"node-fetch": "^2.6.0",
"opentracing": "^0.14.4",
"prom-client": "^11.5.3",
"raven": "^2.2.1",
"request": "^2.81.0",
"stack-trace": "^0.0.9",
"uuid": "^3.0.1",
"winston": "^2.2.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-string": "^1.2.0",
"deepcopy": "^0.6.3",
"eslint": "^3.6.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"foreman": "^2.0.0",
"istanbul": "^0.4.5",
"istanbul-coveralls": "^1.0.3",
"mocha": "^3.0.2",
"nodemon": "^1.10.2",
"nyc": "^11.3.0",
"sinon": "^4.1.3",
"supertest": "^2.0.0"
}
}