-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.52 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.52 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@aliceo2/bookkeeping",
"version": "1.17.1",
"author": "ALICEO2",
"repository": {
"type": "git",
"url": "https://github.com/AliceO2Group/Bookkeeping.git"
},
"scripts": {
"coverage": "nyc npm test && npm run coverage:report",
"coverage:report": "nyc report --reporter=html --reporter=json",
"lint": "eslint --config eslint.config.js ",
"lint:fix": "npm run lint -- --fix",
"sequelize": "sequelize-cli",
"start:dev": "nodemon --ignore 'lib/public/**/*.js' lib/main.js",
"start:prod": "node lib/main.js",
"test": "mocha --exit --timeout 0",
"test:subset": "nyc -- mocha --exit --timeout 0 test/scripts/test-${TEST_TYPE}.js && nyc report --report-dir=/usr/src/app/coverage/${TEST_TYPE} --reporter=json",
"test:subset-local": "mocha --exit --timeout 0 --reporter test/scripts/parallel-local/custom-mocha-reporter.js test/scripts/test-${TEST_TYPE}.js",
"docker-run": "docker compose -f docker-compose.yml -f docker-compose.dev.yml up --build",
"docker-test": "docker compose -p test -f docker-compose.yml -f docker-compose.test.yml up --build --abort-on-container-exit",
"docker-test:parallel": "node test/scripts/parallel-local/main.js",
"docker-update": "node scripts/update-dockerfile.js"
},
"engines": {
"node": ">= 22.x"
},
"dependencies": {
"@aliceo2/web-ui": "2.9.0",
"@grpc/grpc-js": "1.14.0",
"@grpc/proto-loader": "0.8.0",
"cls-hooked": "4.2.2",
"d3": "7.8.5",
"deepmerge": "4.3.0",
"dotenv": "17.2.0",
"joi": "18.0.0",
"kafkajs": "2.2.0",
"mariadb": "3.0.0",
"mkdirp": "3.0.1",
"multer": "2.0.2",
"node-fetch": "3.3.1",
"protobufjs": "8.0.0",
"sequelize": "6.37.0",
"umzug": "3.8.2"
},
"files": [
"lib/",
"docs/",
"proto/"
],
"devDependencies": {
"@eslint/js": "^9.39.1",
"@stylistic/eslint-plugin-js": "^4.4.1",
"@types/d3": "7.4.0",
"chai": "4.5.0",
"date-and-time": "3.6.0",
"eslint": "^9.37.0",
"eslint-plugin-jsdoc": "^62.5.0",
"globals": "^17.3.0",
"js-yaml": "4.1.1",
"mocha": "11.7.0",
"nodemon": "3.1.3",
"nyc": "17.1.0",
"puppeteer": "24.37.2",
"puppeteer-to-istanbul": "1.4.0",
"sequelize-cli": "6.6.0",
"sinon": "21.0.0",
"supertest": "7.2.2"
},
"bundleDependencies": [
"@aliceo2/web-ui",
"@grpc/grpc-js",
"@grpc/proto-loader",
"cls-hooked",
"d3",
"deepmerge",
"joi",
"kafkajs",
"mariadb",
"multer",
"node-fetch",
"protobufjs",
"sequelize",
"umzug"
]
}