build(ci): do not cancel workflow in case of autofix failure
[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",
f1b05f99 4 "version": "1.4.1",
7dde0b73 5 "engines": {
1a6188b2 6 "node": ">=18.18.0",
6eddb719 7 "pnpm": ">=9.0.0"
7dde0b73 8 },
8f074ebf 9 "volta": {
abc5de85 10 "node": "22.4.0",
9d31316e 11 "pnpm": "9.4.0"
8f074ebf 12 },
9d31316e 13 "packageManager": "pnpm@9.4.0",
7dde0b73
JB
14 "repository": {
15 "type": "git",
7f774a55 16 "url": "https://github.com/sap/e-mobility-charging-stations-simulator.git"
7dde0b73 17 },
e6159ce8 18 "description": "Electric vehicle charging stations simulator",
68250247 19 "author": "SAP E-Mobility <e-mobility@sap.com>",
0215fd14
JB
20 "keywords": [
21 "ocpp",
22 "ocpp-j",
23 "ocpp1.6",
24 "ocpp2.0",
25 "charging station",
26 "load testing"
27 ],
4160581a
JB
28 "contributors": [
29 {
30 "name": "Jérôme Benoit",
31 "email": "jerome.benoit@piment-noir.org",
32 "url": "https://github.com/jerome-benoit"
33 }
34 ],
7dde0b73
JB
35 "license": "Apache-2.0",
36 "licenses": [
37 {
38 "type": "Apache-2.0",
39 "url": "http://www.apache.org/licenses/LICENSE-2.0"
40 }
41 ],
92ce5473 42 "type": "module",
f3f07945 43 "exports": "./dist/start.js",
ae8ee665 44 "mikro-orm": {
1552a666 45 "tsConfigPath": "./tsconfig-mikro-orm.json",
ae8ee665
JB
46 "useTsNode": true
47 },
7dde0b73 48 "scripts": {
b0c4f887
JB
49 "prepare": "node prepare.js",
50 "build-requirements": "node --no-warnings build-requirements.js",
08164562 51 "start": "pnpm build && cross-env NODE_ENV=production node dist/start.js",
d60bc09d
JB
52 "start:dev": "pnpm build:dev && cross-env NODE_ENV=development node --enable-source-maps dist/start.js",
53 "start:dev:debug": "pnpm build:dev && cross-env NODE_ENV=development node --enable-source-maps --inspect dist/start.js",
54 "start:prof": "cross-env NODE_ENV=production node --enable-source-maps --prof dist/start.js",
55 "start:doctorprof": "cross-env NODE_ENV=production clinic doctor -- node --enable-source-maps dist/start.js",
56 "start:flameprof": "cross-env NODE_ENV=production clinic flame -- node --enable-source-maps dist/start.js",
57 "start:bubbleprof": "cross-env NODE_ENV=production clinic bubbleprof -- node --enable-source-maps dist/start.js",
58 "start:heapprofiler": "cross-env NODE_ENV=production clinic heapprofiler -- node --enable-source-maps dist/start.js",
44ebef4c
JB
59 "esbuild": "pnpm build-requirements && node bundle.js",
60 "build": "pnpm esbuild",
44ebef4c 61 "build:dev": "cross-env BUILD=development pnpm esbuild",
e1486a4c
JB
62 "build:cf": "pnpm clean:node_modules && pnpm exec cross-env SKIP_PREINSTALL=1 npm install && pnpm build",
63 "build:cf:dev": "pnpm clean:node_modules && pnpm exec cross-env SKIP_PREINSTALL=1 npm install && pnpm build:dev",
1552a666 64 "build:entities": "tsc -p tsconfig-mikro-orm.json",
e1486a4c
JB
65 "clean:dist": "pnpm exec rimraf dist",
66 "clean:node_modules": "pnpm exec rimraf node_modules",
c69ae13b
JB
67 "lint": "cross-env TIMING=1 eslint --cache src tests ./*.cjs ./*.js ./*.ts",
68 "lint:fix": "cross-env TIMING=1 eslint --cache --fix src tests ./*.cjs ./*.js ./*.ts",
69 "format": "prettier --cache --write .; eslint --cache --fix src tests ./*.cjs ./*.js ./*.ts",
563a5165
JB
70 "test": "glob -c \"c8 node --import tsx --test\" \"tests/**/*.test.ts\"",
71 "test:debug": "glob -c \"node --import tsx --test --inspect\" \"tests/**/*.test.ts\"",
12240a2e
JB
72 "coverage": "c8 report --reporter=lcov",
73 "coverage:html": "c8 report --reporter=html",
2c02376b 74 "clinic:clean": "clinic clean"
7dde0b73 75 },
a4e5c2e2
JB
76 "pnpm": {
77 "overrides": {
64378b5e 78 "cacheable-request": "^10.2.10",
a4e5c2e2 79 "d3-color": "^3.1.0",
64378b5e 80 "ejs": "^3.1.9",
80e9ca9d 81 "got": "^12.6.1",
d517f61a 82 "semver": "^7.5.3",
2863f68f 83 "uuid": "^9.0.0",
d517f61a 84 "tough-cookie": "^4.1.3"
a4e5c2e2 85 }
db64a53b 86 },
7dde0b73 87 "dependencies": {
4ed43d28
JB
88 "@mikro-orm/core": "^6.2.9",
89 "@mikro-orm/mariadb": "^6.2.9",
90 "@mikro-orm/reflection": "^6.2.9",
91 "@mikro-orm/sqlite": "^6.2.9",
312d3254 92 "ajv": "^8.16.0",
80af2766 93 "ajv-formats": "^3.0.1",
22af77b3 94 "basic-ftp": "^5.0.5",
03e9d277 95 "chalk": "^5.3.0",
aa711e39 96 "date-fns": "^3.6.0",
6b442d92 97 "http-status-codes": "^2.3.0",
d7997714 98 "logform": "^2.6.0",
e80de0da 99 "mnemonist": "0.40.0-rc1",
a6fac14d 100 "mongodb": "^6.8.0",
93881203 101 "poolifier": "^4.0.15",
12c0935b 102 "rambda": "^9.2.1",
a79c81af 103 "tar": "^7.4.0",
551f2b6e 104 "winston": "^3.13.0",
b0211498 105 "winston-daily-rotate-file": "^5.0.0",
4119c6ed 106 "ws": "^8.18.0"
7dde0b73 107 },
3d337bdb 108 "optionalDependencies": {
4cb190b6 109 "bufferutil": "^4.0.8",
1f851da6 110 "utf-8-validate": "^6.0.4"
3d337bdb 111 },
7dde0b73 112 "devDependencies": {
04b885f0 113 "@commitlint/cli": "^19.3.0",
5b7bbdba 114 "@commitlint/config-conventional": "^19.2.2",
4ed43d28 115 "@mikro-orm/cli": "^6.2.9",
6c7388a4 116 "@types/node": "^20.14.9",
9ed96ef8 117 "@types/semver": "^7.5.8",
4a0329e1 118 "@types/ws": "^8.5.10",
11846be1
JB
119 "@typescript-eslint/eslint-plugin": "^7.15.0",
120 "@typescript-eslint/parser": "^7.15.0",
a6a928b1 121 "c8": "^10.1.2",
08921fbb 122 "clinic": "^13.0.0",
93b6750e 123 "cross-env": "^7.0.3",
7f6b56b5 124 "esbuild": "^0.23.0",
44ebef4c
JB
125 "esbuild-plugin-clean": "^1.0.1",
126 "esbuild-plugin-copy": "^2.1.1",
f4bc6863 127 "eslint": "^8.57.0",
dbbe79a0 128 "eslint-config-love": "^47.0.0",
66a7748d 129 "eslint-config-standard": "^17.1.0",
66a7748d 130 "eslint-define-config": "^2.1.0",
3d5de16e 131 "eslint-import-resolver-typescript": "^3.6.1",
408f561b 132 "eslint-plugin-import": "^2.29.1",
d0ba2f7b 133 "eslint-plugin-jsdoc": "^48.5.2",
06b60859 134 "eslint-plugin-n": "^17.9.0",
a33e3b41 135 "eslint-plugin-simple-import-sort": "^12.1.1",
cc99095f 136 "eslint-plugin-tsdoc": "^0.3.0",
3810892e 137 "expect": "^29.7.0",
a79c81af 138 "glob": "^10.4.2",
a474cbe1 139 "husky": "^9.0.11",
a6a928b1 140 "lint-staged": "^15.2.7",
7e7760d1 141 "prettier": "^3.3.2",
7445d18b 142 "rimraf": "^5.0.7",
5218eec2 143 "semver": "^7.6.2",
66a7748d 144 "ts-node": "^10.9.2",
e92bd991 145 "tsx": "^4.16.2",
6537ae8f 146 "typescript": "~5.5.3"
7dde0b73
JB
147 }
148}