-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.32 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.32 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@aliceo2/qc",
"version": "3.19.0",
"description": "O2 Quality Control Web User Interface",
"author": "George Raduta",
"contributors": [
"Vladimir Kosmala",
"Adam Wegrzynek"
],
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/AliceO2Group/WebUi.git"
},
"engines": {
"node": ">= 22.x"
},
"type": "module",
"homepage": "https://alice-o2-project.web.cern.ch/",
"scripts": {
"start": "node index.js",
"dev": "nodemon --watch index.js --watch lib --watch config.js index.js",
"dev-networked-mount": "nodemon -L --watch index.js --watch lib --watch config.js index.js",
"lint": "./node_modules/.bin/eslint --config eslint.config.js lib public",
"coverage-lcov": "node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=coverage/lcov.info test/test-index.js",
"coverage-local": "node --test --experimental-test-coverage --test-reporter=spec test/test-index.js",
"test": "node --test test/test-index.js",
"test-debug": "node --inspect test/test-index.js --debug",
"copy-config": "sh scripts/copy-config.sh",
"docker-dev": "npm run copy-config && docker compose -f docker-compose.yml -f docker-compose.dev.yml up --build",
"docker-test": "docker compose -f docker-compose.yml -f docker-compose.test.yml up --build --abort-on-container-exit",
"docker-coverage-ci": "docker compose -f docker-compose.yml -f docker-compose.coverage-ci.yml up --build --abort-on-container-exit",
"docker-coverage-local": "docker compose -f docker-compose.yml -f docker-compose.coverage-local.yml up --build --abort-on-container-exit"
},
"files": [
"common/",
"lib/",
"public/",
"index.js"
],
"dependencies": {
"@aliceo2/web-ui": "2.9.0",
"joi": "18.0.0",
"jsroot": "7.10.1",
"kafkajs": "^2.2.4",
"mariadb": "^3.5.1",
"sequelize": "^6.37.7",
"umzug": "^3.8.2"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@stylistic/eslint-plugin-js": "^4.4.0",
"eslint": "^9.39.1",
"eslint-plugin-jsdoc": "^62.5.0",
"globals": "^17.3.0",
"nock": "^15.0.0",
"puppeteer": "^24.36.0",
"sequelize-cli": "^6.6.2",
"sinon": "^21.0.0",
"supertest": "^7.2.2"
},
"bundleDependencies": [
"@aliceo2/web-ui",
"jsroot",
"joi",
"kafkajs"
]
}