-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.68 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@aliceo2/run-condition-table",
"version": "0.4.0",
"description": "Run Condition Table",
"main": "main.js",
"author": "ALICEO2",
"keywords": [
"CERN",
"ALICEO2"
],
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/AliceO2Group/RunConditionTable.git"
},
"directories": {
"doc": "docs",
"test": "test"
},
"scripts": {
"eslint": "eslint app test --ext .js --format html --output-file ./reports/static/static-analysis.html",
"eslint:fix": "npm run eslint -- --fix",
"eslint:show": "run-script-os",
"eslint:show:linux": "npm run eslint; firefox ./reports/static/static-analysis.html",
"eslint:show:macos": "npm run eslint; open -a firefox ./reports/static/static-analysis.html",
"static": "npm run eslint",
"coverage:test": "bash -c \"$( echo \"mocha --exit test/* $MOCHA_OPTIONS\" )\" ",
"coverage:report": "nyc report --report=html --report=json",
"coverage": "nyc npm run coverage:test && npm run coverage:report",
"setup:test": "./scripts/setup-frontend-on-mocha-tests-environemt.sh",
"start:test": "npm run setup:test && npm run coverage",
"reports:show": "open ./reports/**/*.html",
"reports:clean": "rm -rf ./reports; rm -rf .nyc_output",
"start:dev": "nodemon app/main.js --watch main.js --watch app --ignore app/public",
"start:dev:ND": "node app/main.js",
"start:dev:local": "(export RCT_DB_HOST=${RCT_DB_HOST:-localhost}; bash -c 'set -o allexport && ls && source ./docker/dev.env && set +o allexport && npm run start:dev')",
"deploy:db:local": "./database/setup-db.sh --env ./docker/dev.env",
"dev": "./rctmake rm,run,app:attach,stop --target dev",
"idev": "node -e \"app = require('./app/application.js'); const { databaseManager: dbm, syncManager: scm } = app; const cfg = require('./app/config');\" -i",
"node-dev-env": "(export RCT_DB_HOST=$(docker inspect o2rct_database-dev -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}'); bash -c 'set -o allexport && ls && source ./docker/dev.env && set +o allexport && node')",
"test": "./rctmake rm,run --target test",
"rm": "./rctmake rm",
"app:attach": "./rctmake app:attach",
"app:battach": "./rctmake app:battach",
"db:check": "./rctmake rm,run,follow -t dev -S o2rct_database-dev ",
"db:attach": "./rctmake db:attach",
"db:battach": "./rctmake db:battach",
"db:clean": "./rctmake db:clean",
"dump:make": "./rctmake dump:make -F ",
"dump:list": "./rctmake dump:list",
"dump:restore": "./rctmake dump:restore -F ",
"dump:remove": "./rctmake dump:remove -F "
},
"bugs": {
"url": "https://github.com/AliceO2Group/RunConditionTable/issues"
},
"homepage": "https://github.com/AliceO2Group/RunConditionTable#readme",
"dependencies": {
"@aliceo2/web-ui": "^2.5.0",
"cls-hooked": "^4.2.2",
"csvtojson": "^2.0.10",
"deepmerge": "^4.3.1",
"esm": "^3.2.25",
"joi": "^17.11.0",
"less": "^4.1.3",
"pg": "^8.8.0",
"sequelize": "^6.34.0",
"umzug": "^3.2.1",
"socks-proxy-agent": "^8.0.2"
},
"devDependencies": {
"chai": "^4.3.6",
"eslint": "^8.51.0",
"eslint-output": "^3.0.1",
"esm-wallaby": "^3.2.26",
"mocha": "^10.1.0",
"nodemon": "^3.0.1",
"nyc": "^15.1.0",
"puppeteer": "^21.3.4",
"puppeteer-to-istanbul": "^1.4.0",
"run-script-os": "^1.1.6",
"sequelize-cli": "^6.6.1",
"sinon": "^16.1.0",
"supertest": "^6.3.3"
},
"files": [
"app/",
"docs/",
"lib/",
"database/"
],
"bundleDependencies": [
"@aliceo2/web-ui",
"cls-hooked",
"deepmerge",
"esm",
"joi",
"less",
"pg",
"sequelize",
"umzug",
"socks-proxy-agent"
]
}