build(simulator): silence linter
[e-mobility-charging-stations-simulator.git] / package.json
CommitLineData
7dde0b73 1{
7f774a55 2 "name": "e-mobility-charging-stations-simulator",
e4ae9a3d 3 "version": "1.2.17",
7dde0b73 4 "engines": {
962a8159 5 "node": ">=16.14.0",
5f0a7b0d 6 "pnpm": ">=8.6.0"
7dde0b73 7 },
8f074ebf 8 "volta": {
80e9ca9d 9 "node": "20.4.0",
2d0d3469 10 "pnpm": "8.6.7"
8f074ebf 11 },
7dde0b73
JB
12 "repository": {
13 "type": "git",
7f774a55 14 "url": "https://github.com/sap/e-mobility-charging-stations-simulator.git"
7dde0b73 15 },
e6159ce8 16 "description": "Electric vehicle charging stations simulator",
68250247 17 "author": "SAP E-Mobility <e-mobility@sap.com>",
4160581a
JB
18 "contributors": [
19 {
20 "name": "Jérôme Benoit",
21 "email": "jerome.benoit@piment-noir.org",
22 "url": "https://github.com/jerome-benoit"
23 }
24 ],
7dde0b73
JB
25 "license": "Apache-2.0",
26 "licenses": [
27 {
28 "type": "Apache-2.0",
29 "url": "http://www.apache.org/licenses/LICENSE-2.0"
30 }
31 ],
92ce5473 32 "type": "module",
db9b23ee 33 "exports": [
51022aa0 34 "./dist/start.js"
db9b23ee 35 ],
d22589b3 36 "auto-changelog": {
7f774a55
JB
37 "commitUrl": "https://github.com/sap/e-mobility-charging-stations-simulator/commit/{id}",
38 "issueUrl": "https://github.com/sap/e-mobility-charging-stations-simulator/issues/{id}",
39 "mergeUrl": "https://github.com/sap/e-mobility-charging-stations-simulator/pull/{id}",
40 "compareUrl": "https://github.com/sap/e-mobility-charging-stations-simulator/compare/{from}...{to}"
d22589b3 41 },
ae8ee665 42 "mikro-orm": {
85c8a4cf 43 "tsConfigPath": "./tsconfig-orm.json",
ae8ee665
JB
44 "useTsNode": true
45 },
7dde0b73 46 "scripts": {
a90bec52 47 "preinstall": "node skip-preinstall.cjs || npx --yes only-allow pnpm",
92ce5473 48 "prepare": "node prepare.cjs",
653b69b4 49 "build-requirements": "node --no-warnings build-requirements.mjs",
51022aa0
JB
50 "start": "pnpm build && cross-env NODE_ENV=production node -r source-map-support/register dist/start.js",
51 "start:dev": "pnpm build:dev && cross-env NODE_ENV=development node -r source-map-support/register dist/start.js",
52 "start:dev:debug": "pnpm build:dev && cross-env NODE_ENV=development node -r source-map-support/register --inspect dist/start.js",
53 "start:prof": "cross-env NODE_ENV=production node -r source-map-support/register --prof dist/start.js",
54 "start:doctorprof": "cross-env NODE_ENV=production clinic doctor -- node -r source-map-support/register dist/start.js",
55 "start:flameprof": "cross-env NODE_ENV=production clinic flame -- node -r source-map-support/register dist/start.js",
56 "start:bubbleprof": "cross-env NODE_ENV=production clinic bubbleprof -- node -r source-map-support/register dist/start.js",
57 "start:heapprofiler": "cross-env NODE_ENV=production clinic heapprofiler -- node -r source-map-support/register dist/start.js",
c7f157db
JB
58 "rollup": "pnpm build-requirements && rollup --config",
59 "build": "pnpm rollup",
60 "build:cf": "pnpm clean:node_modules && npx cross-env SKIP_PREINSTALL=1 npm install && pnpm rollup",
51022aa0
JB
61 "build:dev": "pnpm rollup --environment BUILD:development",
62 "build:dev:analyze": "pnpm rollup --environment ANALYZE,BUILD:development",
63 "build:dev:watch": "pnpm rollup --environment BUILD:development --watch",
e592ba1d
JB
64 "clean:dist": "npx rimraf dist",
65 "clean:node_modules": "npx rimraf node_modules",
95f74dfb
JB
66 "lint": "cross-env TIMING=1 eslint --cache src",
67 "lint:fix": "cross-env TIMING=1 eslint --cache --fix src",
e60a5ba3 68 "format": "prettier --cache --write .",
d4ad9d45
JB
69 "test": "c8 mocha test/**/*.test.ts",
70 "test:debug": "mocha --no-parallel --inspect test/**/*.test.ts",
12240a2e
JB
71 "coverage": "c8 report --reporter=lcov",
72 "coverage:html": "c8 report --reporter=html",
7dde0b73 73 "clinic:clean": "clinic clean",
47e22477 74 "robohydra": "robohydra test/robohydra/config.json",
5c97c3b3 75 "git:sinit": "git submodule update --init --recursive --force",
c718e93d 76 "git:sdiff": "git diff && git submodule foreach 'git diff'",
3a860d9e 77 "git:supdate": "git submodule update --remote --recursive --merge",
84e52c2c 78 "git:spush": "git push --recurse-submodules=on-demand",
cedae80d 79 "release": "release-it"
7dde0b73 80 },
a4e5c2e2
JB
81 "pnpm": {
82 "overrides": {
64378b5e 83 "cacheable-request": "^10.2.10",
a4e5c2e2 84 "d3-color": "^3.1.0",
64378b5e 85 "ejs": "^3.1.9",
80e9ca9d
JB
86 "got": "^12.6.1",
87 "semver": "^7.5.3"
a4e5c2e2 88 }
db64a53b 89 },
7dde0b73 90 "dependencies": {
cc782174
JB
91 "@mikro-orm/core": "^5.7.12",
92 "@mikro-orm/mariadb": "^5.7.12",
93 "@mikro-orm/reflection": "^5.7.12",
94 "@mikro-orm/sqlite": "^5.7.12",
bbe10d5f 95 "ajv": "^8.12.0",
e3018bc4 96 "ajv-formats": "^2.1.1",
08049dfd 97 "basic-ftp": "^5.0.3",
03e9d277 98 "chalk": "^5.3.0",
1f7fa4de 99 "http-status-codes": "^2.2.0",
088ee3c1
JB
100 "just-clone": "^6.2.0",
101 "just-merge": "^3.2.0",
5a2a53cf 102 "logform": "^2.5.1",
4a5a7863 103 "mnemonist": "^0.39.5",
5b7a0892 104 "moment": "^2.29.4",
9d5b181b 105 "mongodb": "^5.7.0",
fac8866f 106 "poolifier": "^2.6.16",
1dc29974 107 "source-map-support": "^0.5.21",
7e4b5b38 108 "tar": "^6.1.15",
6790ada0 109 "tslib": "^2.6.0",
3e8d029b 110 "winston": "^3.10.0",
2820900f 111 "winston-daily-rotate-file": "^4.7.1",
ab9c8862 112 "ws": "^8.13.0"
7dde0b73 113 },
3d337bdb 114 "optionalDependencies": {
ef85c95a 115 "bufferutil": "^4.0.7",
d994fe7c 116 "utf-8-validate": "^6.0.3"
3d337bdb 117 },
7dde0b73 118 "devDependencies": {
2b080fa6
JB
119 "@commitlint/cli": "^17.6.6",
120 "@commitlint/config-conventional": "^17.6.6",
cc782174 121 "@mikro-orm/cli": "^5.7.12",
6074ba92 122 "@release-it/bumper": "^5.0.0",
b78290ea 123 "@rollup/plugin-json": "^6.0.0",
7e4b5b38 124 "@rollup/plugin-terser": "^0.4.3",
30624b18 125 "@rollup/plugin-typescript": "^11.1.2",
f704ec19 126 "@types/mocha": "^10.0.1",
47e22477 127 "@types/mochawesome": "^6.2.1",
2f57dd9b 128 "@types/node": "^20.4.2",
ff2521fc 129 "@types/sinon": "^10.0.15",
f682b2dc 130 "@types/tar": "^6.1.5",
20770557 131 "@types/ws": "^8.5.5",
3e8d029b
JB
132 "@typescript-eslint/eslint-plugin": "^5.62.0",
133 "@typescript-eslint/parser": "^5.62.0",
672551ed 134 "@web/rollup-plugin-copy": "^0.4.0",
6e19d740 135 "auto-changelog": "^2.4.0",
349d5d26 136 "c8": "^8.0.0",
08921fbb 137 "clinic": "^13.0.0",
93b6750e 138 "cross-env": "^7.0.3",
2f57dd9b 139 "eslint": "^8.45.0",
62340a29 140 "eslint-config-prettier": "^8.8.0",
e88cc460 141 "eslint-import-resolver-typescript": "^3.5.5",
6db3502d 142 "eslint-plugin-import": "^2.27.5",
3f7313c5 143 "eslint-plugin-jsdoc": "^46.4.3",
42cdde9a 144 "eslint-plugin-n": "^16.0.1",
5edd8ba0 145 "eslint-plugin-prettier": "^5.0.0",
0e4fa348 146 "eslint-plugin-tsdoc": "^0.2.17",
afaf0037 147 "expect": "^29.6.1",
bbe10d5f 148 "husky": "^8.0.3",
30624b18 149 "lint-staged": "^13.2.3",
d439da5c 150 "mocha": "^10.2.0",
39dca63f 151 "mochawesome": "^7.1.3",
5edd8ba0 152 "prettier": "^3.0.0",
43ef86a2 153 "release-it": "^16.1.0",
064d000b 154 "rimraf": "^5.0.1",
47e22477 155 "robohydra": "^0.6.9",
80e9ca9d 156 "rollup": "^3.26.2",
cb1948a3 157 "rollup-plugin-analyzer": "^4.0.0",
44b07a21 158 "rollup-plugin-delete": "^2.0.0",
43ef86a2 159 "semver": "^7.5.4",
2b080fa6 160 "sinon": "^15.2.0",
9090050f 161 "ts-node": "^10.9.1",
03e9d277 162 "typescript": "^5.1.6"
7dde0b73
JB
163 }
164}