-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.86 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.86 KB
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
{
"name": "dcm2bq-admin-console",
"version": "1.0.23",
"private": true,
"description": "Standalone admin console for dcm2bq with frontend and backend",
"main": "backend/src/index.js",
"scripts": {
"start": "node backend/src/index.js",
"dev": "NODE_ENV=test BQ_INSTANCES_VIEW_ID=${BQ_INSTANCES_VIEW_ID:-instancesView} BQ_LOCATION=${BQ_LOCATION:-US} GCS_BUCKET_NAME=${GCS_BUCKET_NAME:-} ADMIN_UPLOAD_GCS_BUCKET=${ADMIN_UPLOAD_GCS_BUCKET:-${GCS_BUCKET_NAME:-}} nodemon --exec node backend/src/index.js",
"test": "npm run test:unit",
"test:unit": "mocha test/unit/**/*.test.js --timeout 5000",
"test:integration": "mocha test/integration/**/*.integration.js --timeout 15000",
"test:docker-smoke": "./helpers/run-docker-smoke-tests.sh",
"pretest:ui": "npx playwright install",
"test:ui": "playwright test test/ui/",
"test:ui:debug": "npm run test:ui -- --debug",
"test:ui:headed": "npm run test:ui -- --headed",
"release": "release-it --ci"
},
"engines": {
"node": ">=20"
},
"license": "Apache-2.0",
"dependencies": {
"@google-cloud/bigquery": "^8.0.0",
"@google-cloud/pubsub": "^5.2.0",
"@google-cloud/storage": "^7.12.0",
"archiver": "^6.0.0",
"express": "^5.1.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"mocha": "^11.0.0",
"nodemon": "^3.0.2",
"release-it": "^20.0.0"
},
"release-it": {
"github": {
"release": false
},
"npm": {
"publish": false
},
"hooks": {
"before:init": [
"npm run test"
],
"after:release": [
"docker build . --tag jasonklotzer/dcm2bq-admin-console:latest --tag jasonklotzer/dcm2bq-admin-console:${version} --no-cache",
"docker push jasonklotzer/dcm2bq-admin-console:latest",
"docker push jasonklotzer/dcm2bq-admin-console:${version}"
]
}
}
}