feat: add supervision url configuration to Keba template
[e-mobility-charging-stations-simulator.git] / package.json
CommitLineData
7dde0b73 1{
7f774a55 2 "name": "e-mobility-charging-stations-simulator",
6e2b0006 3 "version": "1.2.0-0",
7dde0b73 4 "engines": {
881f450c 5 "node": ">=16.0.0"
7dde0b73
JB
6 },
7 "repository": {
8 "type": "git",
7f774a55 9 "url": "https://github.com/sap/e-mobility-charging-stations-simulator.git"
7dde0b73 10 },
e6159ce8 11 "description": "Electric vehicle charging stations simulator",
68250247 12 "author": "SAP E-Mobility <e-mobility@sap.com>",
4160581a
JB
13 "contributors": [
14 {
15 "name": "Jérôme Benoit",
16 "email": "jerome.benoit@piment-noir.org",
17 "url": "https://github.com/jerome-benoit"
18 }
19 ],
7dde0b73
JB
20 "license": "Apache-2.0",
21 "licenses": [
22 {
23 "type": "Apache-2.0",
24 "url": "http://www.apache.org/licenses/LICENSE-2.0"
25 }
26 ],
92ce5473 27 "type": "module",
db9b23ee 28 "exports": [
db9b23ee
JB
29 "./dist/start.mjs"
30 ],
d22589b3 31 "auto-changelog": {
7f774a55
JB
32 "commitUrl": "https://github.com/sap/e-mobility-charging-stations-simulator/commit/{id}",
33 "issueUrl": "https://github.com/sap/e-mobility-charging-stations-simulator/issues/{id}",
34 "mergeUrl": "https://github.com/sap/e-mobility-charging-stations-simulator/pull/{id}",
35 "compareUrl": "https://github.com/sap/e-mobility-charging-stations-simulator/compare/{from}...{to}"
d22589b3 36 },
ae8ee665 37 "mikro-orm": {
85c8a4cf 38 "tsConfigPath": "./tsconfig-orm.json",
ae8ee665
JB
39 "useTsNode": true
40 },
7dde0b73 41 "scripts": {
514a30ba 42 "preinstall": "node skip-preinstall.cjs || npx only-allow pnpm",
92ce5473 43 "prepare": "node prepare.cjs",
653b69b4 44 "build-requirements": "node --no-warnings build-requirements.mjs",
881f450c
JB
45 "start": "pnpm run build && cross-env NODE_ENV=production node -r source-map-support/register dist/start.mjs",
46 "start:dev": "pnpm run build:dev && cross-env NODE_ENV=development node -r source-map-support/register dist/start.mjs",
47 "start:dev:debug": "pnpm run build:dev && cross-env NODE_ENV=development node -r source-map-support/register --inspect dist/start.mjs",
653b69b4 48 "start:prof": "cross-env NODE_ENV=production node -r source-map-support/register --prof dist/start.mjs",
abe9e9dd
JB
49 "start:doctorprof": "cross-env NODE_ENV=production clinic doctor -- node -r source-map-support/register dist/start.mjs",
50 "start:flameprof": "cross-env NODE_ENV=production clinic flame -- node -r source-map-support/register dist/start.mjs",
51 "start:bubbleprof": "cross-env NODE_ENV=production clinic bubbleprof -- node -r source-map-support/register dist/start.mjs",
52 "start:heapprofiler": "cross-env NODE_ENV=production clinic heapprofiler -- node -r source-map-support/register dist/start.mjs",
881f450c
JB
53 "rollup": "pnpm run build-requirements && rollup --config",
54 "build": "pnpm run rollup",
042f9250 55 "build:cf": "npx rimraf node_modules && npx cross-env SKIP_PREINSTALL=1 npm install && pnpm run rollup",
881f450c
JB
56 "build:dev": "pnpm run rollup -- --environment BUILD:development",
57 "build:dev:watch": "pnpm run rollup -- --environment BUILD:development --watch",
92ce5473
JB
58 "lint": "cross-env TIMING=1 eslint --cache --ext .js,.cjs,.mjs,.ts src",
59 "lint:fix": "cross-env TIMING=1 eslint --cache --fix --ext .js,.cjs,.mjs,.ts src",
e60a5ba3 60 "format": "prettier --cache --write .",
12240a2e 61 "test": "c8 mocha test/**/*Test.ts",
3e985d18 62 "test:debug": "mocha --no-parallel --inspect test/**/*Test.ts",
12240a2e
JB
63 "coverage": "c8 report --reporter=lcov",
64 "coverage:html": "c8 report --reporter=html",
7dde0b73 65 "clinic:clean": "clinic clean",
47e22477 66 "robohydra": "robohydra test/robohydra/config.json",
5c97c3b3 67 "git:sinit": "git submodule update --init --recursive --force",
c718e93d 68 "git:sdiff": "git diff && git submodule foreach 'git diff'",
3a860d9e 69 "git:supdate": "git submodule update --remote --recursive --merge",
84e52c2c 70 "git:spush": "git push --recurse-submodules=on-demand",
cedae80d 71 "release": "release-it"
7dde0b73 72 },
db64a53b
JB
73 "overrides": {
74 "cacheable-request": "^10.2.7",
75 "d3-color": "^3.1.0"
76 },
7dde0b73 77 "dependencies": {
efad425d
JB
78 "@mikro-orm/core": "^5.6.15",
79 "@mikro-orm/mariadb": "^5.6.15",
80 "@mikro-orm/reflection": "^5.6.15",
81 "@mikro-orm/sqlite": "^5.6.15",
bbe10d5f 82 "ajv": "^8.12.0",
e3018bc4 83 "ajv-formats": "^2.1.1",
17db4acc 84 "basic-ftp": "^5.0.2",
653b69b4 85 "chalk": "^5.2.0",
1f7fa4de 86 "http-status-codes": "^2.2.0",
088ee3c1
JB
87 "just-clone": "^6.2.0",
88 "just-merge": "^3.2.0",
5a2a53cf 89 "logform": "^2.5.1",
4a5a7863 90 "mnemonist": "^0.39.5",
5b7a0892 91 "moment": "^2.29.4",
15f47063 92 "mongodb": "^5.1.0",
12f02afa 93 "poolifier": "^2.3.10",
c63c21bc 94 "proper-lockfile": "^4.1.2",
1dc29974 95 "source-map-support": "^0.5.21",
0145fecd 96 "tar": "^6.1.13",
6a6acd38 97 "tslib": "^2.5.0",
d273692c 98 "winston": "^3.8.2",
2820900f 99 "winston-daily-rotate-file": "^4.7.1",
ab9c8862 100 "ws": "^8.13.0"
7dde0b73 101 },
3d337bdb 102 "optionalDependencies": {
ef85c95a 103 "bufferutil": "^4.0.7",
d994fe7c 104 "utf-8-validate": "^6.0.3"
3d337bdb 105 },
7dde0b73 106 "devDependencies": {
1e60468f 107 "@commitlint/cli": "^17.5.0",
d91f7756 108 "@commitlint/config-conventional": "^17.4.4",
efad425d 109 "@mikro-orm/cli": "^5.6.15",
d4c84337 110 "@release-it/bumper": "^4.0.2",
b78290ea 111 "@rollup/plugin-json": "^6.0.0",
8b6da988
JB
112 "@rollup/plugin-terser": "^0.4.0",
113 "@rollup/plugin-typescript": "^11.0.0",
f704ec19 114 "@types/mocha": "^10.0.1",
47e22477 115 "@types/mochawesome": "^6.2.1",
8262cbb5 116 "@types/node": "^18.15.10",
c63c21bc 117 "@types/proper-lockfile": "^4.1.2",
21ece8a1 118 "@types/sinon": "^10.0.13",
08683829 119 "@types/tar": "^6.1.4",
1cc4b9e0 120 "@types/ws": "^8.5.4",
62340a29
JB
121 "@typescript-eslint/eslint-plugin": "^5.56.0",
122 "@typescript-eslint/parser": "^5.56.0",
6e19d740 123 "auto-changelog": "^2.4.0",
08683829 124 "c8": "^7.13.0",
5a9d7452 125 "clinic": "^12.1.0",
93b6750e 126 "cross-env": "^7.0.3",
779c2add 127 "eslint": "^8.36.0",
62340a29 128 "eslint-config-prettier": "^8.8.0",
3bd24791 129 "eslint-import-resolver-typescript": "^3.5.3",
6db3502d 130 "eslint-plugin-import": "^2.27.5",
12f02afa 131 "eslint-plugin-jsdoc": "^40.1.0",
3bd24791 132 "eslint-plugin-n": "^15.6.1",
71828518 133 "eslint-plugin-prettier": "^4.2.1",
0e4fa348 134 "eslint-plugin-tsdoc": "^0.2.17",
61aad68d 135 "expect": "^29.5.0",
bbe10d5f 136 "husky": "^8.0.3",
ab9c8862 137 "lint-staged": "^13.2.0",
d439da5c 138 "mocha": "^10.2.0",
39dca63f 139 "mochawesome": "^7.1.3",
930c92d0 140 "prettier": "^2.8.7",
31c3e597 141 "release-it": "^15.9.3",
514a30ba 142 "rimraf": "^4.4.1",
47e22477 143 "robohydra": "^0.6.9",
930c92d0 144 "rollup": "^3.20.2",
cb1948a3 145 "rollup-plugin-analyzer": "^4.0.0",
1329403f 146 "rollup-plugin-copy": "^3.4.0",
44b07a21 147 "rollup-plugin-delete": "^2.0.0",
4b9419c8 148 "semver": "^7.3.8",
84818443 149 "sinon": "^15.0.3",
9090050f 150 "ts-node": "^10.9.1",
c8aafe0d 151 "typescript": "^5.0.2"
7dde0b73
JB
152 }
153}