-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
58 lines (58 loc) · 1.56 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@aliceo2/web-ui",
"version": "2.7.4",
"description": "ALICE O2 Web UX framework",
"author": "Adam Wegrzynek",
"contributors": [
"George Raduta",
"Vladimir Kosmala"
],
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/AliceO2Group/WebUi.git"
},
"engines": {
"node": ">= 20.x"
},
"homepage": "https://alice-o2-project.web.cern.ch/",
"scripts": {
"test": "npm run eslint && npm run mocha",
"coverage": "npm run eslint && nyc mocha Backend/test/** --exit",
"mocha": "npm run mocha-frontend && npm run mocha-backend",
"mocha-frontend": "mocha --exit ./Frontend/test/mocha* ",
"mocha-backend": "mocha --exit ./Backend/test/*.js ./Backend/test/**/*.js",
"eslint": "eslint --config eslint.config.js Backend/ Frontend/ docs/tutorial/*.js",
"coverage-local": "nyc --reporter=lcov npm run mocha-backend"
},
"nyc": {
"exclude": [
"Backend/test/**/*"
]
},
"dependencies": {
"express": "^4.21.2",
"helmet": "^8.0.0",
"jsonwebtoken": "^9.0.0",
"kafkajs": "^2.2.0",
"mithril": "1.1.7",
"mysql": "^2.18.1",
"openid-client": "^5.6.0",
"winston": "3.17.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@stylistic/eslint-plugin-js": "^2.13.0",
"eslint": "^9.18.0",
"eslint-plugin-jsdoc": "^50.6.0",
"globals": "^15.14.0",
"mocha": "^11.0.1",
"nock": "13.5.0",
"nyc": "^17.1.0",
"puppeteer": "^24.0.0",
"sinon": "19.0.2",
"supertest": "^7.0.0"
},
"main": "Backend/index.js"
}