build(deps): apply updates
[e-mobility-charging-stations-simulator.git] / package.json
CommitLineData
7dde0b73 1{
beb235d6 2 "$schema": "https://json.schemastore.org/package",
7f774a55 3 "name": "e-mobility-charging-stations-simulator",
7c0473f8 4 "version": "1.2.23",
7dde0b73 5 "engines": {
eef659c1 6 "node": ">=18.17.0",
5f0a7b0d 7 "pnpm": ">=8.6.0"
7dde0b73 8 },
8f074ebf 9 "volta": {
6cd26943 10 "node": "20.8.1",
8416ba82 11 "pnpm": "8.9.0"
8f074ebf 12 },
7dde0b73
JB
13 "repository": {
14 "type": "git",
7f774a55 15 "url": "https://github.com/sap/e-mobility-charging-stations-simulator.git"
7dde0b73 16 },
e6159ce8 17 "description": "Electric vehicle charging stations simulator",
68250247 18 "author": "SAP E-Mobility <e-mobility@sap.com>",
0215fd14
JB
19 "keywords": [
20 "ocpp",
21 "ocpp-j",
22 "ocpp1.6",
23 "ocpp2.0",
24 "charging station",
25 "load testing"
26 ],
4160581a
JB
27 "contributors": [
28 {
29 "name": "Jérôme Benoit",
30 "email": "jerome.benoit@piment-noir.org",
31 "url": "https://github.com/jerome-benoit"
32 }
33 ],
7dde0b73
JB
34 "license": "Apache-2.0",
35 "licenses": [
36 {
37 "type": "Apache-2.0",
38 "url": "http://www.apache.org/licenses/LICENSE-2.0"
39 }
40 ],
92ce5473 41 "type": "module",
db9b23ee 42 "exports": [
51022aa0 43 "./dist/start.js"
db9b23ee 44 ],
d22589b3 45 "auto-changelog": {
7f774a55
JB
46 "commitUrl": "https://github.com/sap/e-mobility-charging-stations-simulator/commit/{id}",
47 "issueUrl": "https://github.com/sap/e-mobility-charging-stations-simulator/issues/{id}",
48 "mergeUrl": "https://github.com/sap/e-mobility-charging-stations-simulator/pull/{id}",
49 "compareUrl": "https://github.com/sap/e-mobility-charging-stations-simulator/compare/{from}...{to}"
d22589b3 50 },
ae8ee665 51 "mikro-orm": {
85c8a4cf 52 "tsConfigPath": "./tsconfig-orm.json",
ae8ee665
JB
53 "useTsNode": true
54 },
7dde0b73 55 "scripts": {
b0c4f887
JB
56 "preinstall": "node skip-preinstall.js || npx --yes only-allow pnpm",
57 "prepare": "node prepare.js",
58 "build-requirements": "node --no-warnings build-requirements.js",
bdc9dc79 59 "start": "pnpm build && cross-env NODE_ENV=production node dist/start.js",
51022aa0
JB
60 "start:dev": "pnpm build:dev && cross-env NODE_ENV=development node -r source-map-support/register dist/start.js",
61 "start:dev:debug": "pnpm build:dev && cross-env NODE_ENV=development node -r source-map-support/register --inspect dist/start.js",
62 "start:prof": "cross-env NODE_ENV=production node -r source-map-support/register --prof dist/start.js",
63 "start:doctorprof": "cross-env NODE_ENV=production clinic doctor -- node -r source-map-support/register dist/start.js",
64 "start:flameprof": "cross-env NODE_ENV=production clinic flame -- node -r source-map-support/register dist/start.js",
65 "start:bubbleprof": "cross-env NODE_ENV=production clinic bubbleprof -- node -r source-map-support/register dist/start.js",
66 "start:heapprofiler": "cross-env NODE_ENV=production clinic heapprofiler -- node -r source-map-support/register dist/start.js",
c7f157db
JB
67 "rollup": "pnpm build-requirements && rollup --config",
68 "build": "pnpm rollup",
69 "build:cf": "pnpm clean:node_modules && npx cross-env SKIP_PREINSTALL=1 npm install && pnpm rollup",
51022aa0
JB
70 "build:dev": "pnpm rollup --environment BUILD:development",
71 "build:dev:analyze": "pnpm rollup --environment ANALYZE,BUILD:development",
72 "build:dev:watch": "pnpm rollup --environment BUILD:development --watch",
e592ba1d
JB
73 "clean:dist": "npx rimraf dist",
74 "clean:node_modules": "npx rimraf node_modules",
95f74dfb
JB
75 "lint": "cross-env TIMING=1 eslint --cache src",
76 "lint:fix": "cross-env TIMING=1 eslint --cache --fix src",
e60a5ba3 77 "format": "prettier --cache --write .",
9775c143
JB
78 "test": "glob -c \"c8 node --loader tsx --no-warnings=ExperimentalWarning --test\" \"tests/**/*.test.ts\"",
79 "test:debug": "glob -c \"node --loader tsx --no-warnings=ExperimentalWarning --test --inspect\" \"tests/**/*.test.ts\"",
12240a2e
JB
80 "coverage": "c8 report --reporter=lcov",
81 "coverage:html": "c8 report --reporter=html",
7dde0b73 82 "clinic:clean": "clinic clean",
cedae80d 83 "release": "release-it"
7dde0b73 84 },
a4e5c2e2
JB
85 "pnpm": {
86 "overrides": {
64378b5e 87 "cacheable-request": "^10.2.10",
a4e5c2e2 88 "d3-color": "^3.1.0",
64378b5e 89 "ejs": "^3.1.9",
80e9ca9d 90 "got": "^12.6.1",
d517f61a 91 "semver": "^7.5.3",
2863f68f 92 "uuid": "^9.0.0",
d517f61a 93 "tough-cookie": "^4.1.3"
a4e5c2e2 94 }
db64a53b 95 },
7dde0b73 96 "dependencies": {
e4cfd714 97 "@mikro-orm/core": "^5.8.8",
b80de20e 98 "@mikro-orm/mariadb": "^5.8.8",
b95e6356 99 "@mikro-orm/reflection": "^5.8.8",
497209cb 100 "@mikro-orm/sqlite": "^5.8.8",
bbe10d5f 101 "ajv": "^8.12.0",
e3018bc4 102 "ajv-formats": "^2.1.1",
08049dfd 103 "basic-ftp": "^5.0.3",
03e9d277 104 "chalk": "^5.3.0",
a675e34b 105 "date-fns": "^2.30.0",
6b442d92 106 "http-status-codes": "^2.3.0",
088ee3c1 107 "just-merge": "^3.2.0",
d7997714 108 "logform": "^2.6.0",
4a5a7863 109 "mnemonist": "^0.39.5",
1d8f226b 110 "mongodb": "^6.1.0",
c01b2f35 111 "poolifier": "^3.0.0",
1dc29974 112 "source-map-support": "^0.5.21",
cd622f55 113 "tar": "^6.2.0",
bca45810 114 "tslib": "^2.6.2",
c01b2f35 115 "winston": "^3.11.0",
2820900f 116 "winston-daily-rotate-file": "^4.7.1",
115ee0e2 117 "ws": "^8.14.2"
7dde0b73 118 },
3d337bdb 119 "optionalDependencies": {
ef85c95a 120 "bufferutil": "^4.0.7",
d994fe7c 121 "utf-8-validate": "^6.0.3"
3d337bdb 122 },
7dde0b73 123 "devDependencies": {
d7997714
JB
124 "@commitlint/cli": "^17.8.0",
125 "@commitlint/config-conventional": "^17.8.0",
8cb9a6d9 126 "@mikro-orm/cli": "^5.8.8",
b5ef1485 127 "@release-it/bumper": "^5.1.0",
83a36f14
JB
128 "@rollup/plugin-json": "^6.0.1",
129 "@rollup/plugin-terser": "^0.4.4",
130 "@rollup/plugin-typescript": "^11.1.5",
d7997714 131 "@types/node": "^20.8.6",
9d4f8d86 132 "@types/sinon": "^10.0.19",
b93b6b49 133 "@types/tar": "^6.1.6",
d2b5af7a 134 "@types/ws": "^8.5.7",
3d20cc6a 135 "@typescript-eslint/eslint-plugin": "^6.7.5",
085e997b 136 "@typescript-eslint/parser": "^6.7.5",
672551ed 137 "@web/rollup-plugin-copy": "^0.4.0",
6e19d740 138 "auto-changelog": "^2.4.0",
20561f78 139 "c8": "^8.0.1",
08921fbb 140 "clinic": "^13.0.0",
93b6750e 141 "cross-env": "^7.0.3",
9d4f8d86 142 "eslint": "^8.51.0",
24a27d1b 143 "eslint-config-prettier": "^9.0.0",
3d5de16e 144 "eslint-import-resolver-typescript": "^3.6.1",
bca45810 145 "eslint-plugin-import": "^2.28.1",
1c64afa6 146 "eslint-plugin-jsdoc": "^46.8.2",
4d8b3f70 147 "eslint-plugin-n": "^16.2.0",
07a8e203 148 "eslint-plugin-prettier": "^5.0.1",
0e4fa348 149 "eslint-plugin-tsdoc": "^0.2.17",
3810892e 150 "expect": "^29.7.0",
5226ae70 151 "glob": "^10.3.10",
bbe10d5f 152 "husky": "^8.0.3",
bf84730b 153 "lint-staged": "^14.0.1",
50be55e7 154 "prettier": "^3.0.3",
997335ab 155 "release-it": "^16.2.1",
81ee26e0 156 "rimraf": "^5.0.5",
d7997714 157 "rollup": "^4.1.0",
cb1948a3 158 "rollup-plugin-analyzer": "^4.0.0",
44b07a21 159 "rollup-plugin-delete": "^2.0.0",
43ef86a2 160 "semver": "^7.5.4",
83a36f14 161 "sinon": "^16.1.0",
33885870 162 "ts-node": "^10.9.1",
6c43b441 163 "tsx": "^3.13.0",
d80459ea 164 "typescript": "~5.2.2"
7dde0b73
JB
165 }
166}