-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 loc) · 1.58 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
{
"name": "serverlesscells",
"version": "1.0.0",
"description": "Serverless Runtime for Observable notebooks",
"repository": "https://github.com/endpointservices/serverlesscells",
"main": "index.mjs",
"scripts": {
"start": "node index.mjs",
"develop_full": "export set LOCAL=true; tinyproxy -dc ./tinyproxy.conf & forever --watch index.mjs",
"develop": "tinyproxy -dc ./tinyproxy.conf & forever --watch index.mjs",
"submit": "gcloud builds submit --tag eu.gcr.io/endpointservice/serversidecells:$TAG --project endpointservice",
"test": "tinyproxy -dc ./tinyproxy.conf & NODE_OPTIONS=--experimental-vm-modules node_modules/.bin/jest --config=jest.config.js",
"build_container": "docker build . -t dev --platform linux/amd64",
"run_container": "docker run --platform linux/amd64 -p 8080:8080 -it dev"
},
"author": "Tom Larkworthy",
"license": "PolyForm Perimeter License 1.0.0",
"dependencies": {
"@google-cloud/logging": "^9.0.0",
"@google-cloud/secret-manager": "^3.2.2",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-http-proxy": "^1.6.3",
"firebase-admin": "^9.4.1",
"http-errors": "^1.7.2",
"http-proxy-middleware": "^2.0.0",
"leaky-bucket": "^4.1.4",
"lodash-es": "^4.17.21",
"puppeteer": "^5.5"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^26.6.3",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-es2015": "^6.24.1",
"forever": "^3.0.2",
"jest": "^26.6.3",
"supertest": "^6.0.1"
}
}