-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 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
{
"name": "gen-website-private",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:probcomp/gen-website-private.git",
"author": "Matthew Huebert <[email protected]>",
"dependencies": {
"@google-cloud/storage": "^7.11.1",
"express": "^4.19.2",
"memoizee": "^0.4.17"
},
"scripts": {
"start": "node src/start.mjs",
"dev": "GOOGLE_APPLICATION_CREDENTIALS=key.json BUCKET_NAME=gen-website-private ENV=dev PORT=3000 nodemon src/start.mjs",
"dev-rsync": "gcloud storage rsync --recursive --cache-control 'public, max-age=60' ./public/gen.dev/local-test gs://gen-website-private/gen.dev/local-test",
"tail": "gcloud app logs tail",
"test": "GOOGLE_APPLICATION_CREDENTIALS=key.json BUCKET_NAME=gen-website-private ENV=dev mocha tests/server_test.mjs"
},
"devDependencies": {
"chai": "^5.1.1",
"create-cloudflare": "^2.31.2",
"mocha": "^10.4.0",
"nodemon": "^3.1.0",
"supertest": "^7.0.0",
"wrangler": "^3.85.0"
},
"type": "module"
}