c42a5571b4751f8a6618e6f8fe58eb40e5ae05a2
[e-mobility-charging-stations-simulator.git] / package.json
1 {
2 "name": "e-mobility-charging-stations-simulator",
3 "version": "1.1.85",
4 "engines": {
5 "node": ">=16.0.0",
6 "npm": ">=8.0.0"
7 },
8 "repository": {
9 "type": "git",
10 "url": "https://github.com/sap/e-mobility-charging-stations-simulator.git"
11 },
12 "description": "Electric vehicle charging stations simulator",
13 "author": "SAP E-Mobility <e-mobility@sap.com>",
14 "contributors": [
15 {
16 "name": "Jérôme Benoit",
17 "email": "jerome.benoit@piment-noir.org",
18 "url": "https://github.com/jerome-benoit"
19 }
20 ],
21 "license": "Apache-2.0",
22 "licenses": [
23 {
24 "type": "Apache-2.0",
25 "url": "http://www.apache.org/licenses/LICENSE-2.0"
26 }
27 ],
28 "exports": [
29 "./dist/start.cjs",
30 "./dist/start.mjs"
31 ],
32 "auto-changelog": {
33 "commitUrl": "https://github.com/sap/e-mobility-charging-stations-simulator/commit/{id}",
34 "issueUrl": "https://github.com/sap/e-mobility-charging-stations-simulator/issues/{id}",
35 "mergeUrl": "https://github.com/sap/e-mobility-charging-stations-simulator/pull/{id}",
36 "compareUrl": "https://github.com/sap/e-mobility-charging-stations-simulator/compare/{from}...{to}"
37 },
38 "mikro-orm": {
39 "tsConfigPath": "./tsconfig-orm.json",
40 "useTsNode": true
41 },
42 "scripts": {
43 "prepare": "node prepare.js",
44 "prestart": "npm run build",
45 "build-requirements": "node build-requirements.js",
46 "start": "cross-env NODE_ENV=production node -r source-map-support/register dist/start.cjs",
47 "start:debug": "cross-env NODE_ENV=production node -r source-map-support/register --inspect dist/start.cjs",
48 "start:dev": "npm run build:dev && cross-env NODE_ENV=development node -r source-map-support/register dist/start.cjs",
49 "start:dev:debug": "npm run build:dev && cross-env NODE_ENV=development node -r source-map-support/register --inspect dist/start.cjs",
50 "start:dev:esm": "npm run build:dev && cross-env NODE_ENV=development node -r source-map-support/register dist/start.mjs",
51 "start:prof": "cross-env NODE_ENV=production node -r source-map-support/register --prof dist/start.cjs",
52 "start:doctorprof": "cross-env NODE_ENV=production clinic doctor -- node -r source-map-support/register dist/start.cjs",
53 "start:flameprof": "cross-env NODE_ENV=production clinic flame -- node -r source-map-support/register dist/start.cjs",
54 "start:bubbleprof": "cross-env NODE_ENV=production clinic bubbleprof -- node -r source-map-support/register dist/start.cjs",
55 "start:heapprofiler": "cross-env NODE_ENV=production clinic heapprofiler -- node -r source-map-support/register dist/start.cjs",
56 "rollup": "npm run build-requirements && rollup --config",
57 "build": "npm run rollup",
58 "build:dev": "npm run rollup -- --environment BUILD:development",
59 "build:dev:watch": "npm run rollup -- --environment BUILD:development --watch",
60 "lint": "cross-env TIMING=1 eslint --cache --ext .js,.ts src",
61 "lint:fix": "cross-env TIMING=1 eslint --cache --fix --ext .js,.ts src",
62 "format": "prettier --write .",
63 "test": "c8 mocha test/**/*Test.ts",
64 "coverage": "c8 report --reporter=lcov",
65 "coverage:html": "c8 report --reporter=html",
66 "clinic:clean": "clinic clean",
67 "robohydra": "robohydra test/robohydra/config.json",
68 "git:sinit": "git submodule update --init --recursive --force",
69 "git:sdiff": "git diff && git submodule foreach 'git diff'",
70 "git:supdate": "git submodule update --remote --recursive --merge",
71 "git:spush": "git push --recurse-submodules=on-demand",
72 "release": "release-it"
73 },
74 "dependencies": {
75 "@mikro-orm/core": "^5.4.2",
76 "@mikro-orm/mariadb": "^5.4.2",
77 "@mikro-orm/reflection": "^5.4.2",
78 "@mikro-orm/sqlite": "^5.4.2",
79 "ajv": "^8.11.0",
80 "ajv-draft-04": "^1.0.0",
81 "ajv-formats": "^2.1.1",
82 "basic-ftp": "^5.0.2",
83 "chalk": "^4.1.2",
84 "http-status-codes": "^2.2.0",
85 "mnemonist": "^0.39.4",
86 "moment": "^2.29.4",
87 "mongodb": "^4.11.0",
88 "poolifier": "^2.3.7",
89 "proper-lockfile": "^4.1.2",
90 "source-map-support": "^0.5.21",
91 "tar": "^6.1.11",
92 "tslib": "^2.4.0",
93 "winston": "^3.8.2",
94 "winston-daily-rotate-file": "^4.7.1",
95 "ws": "^8.10.0"
96 },
97 "optionalDependencies": {
98 "bufferutil": "^4.0.7",
99 "utf-8-validate": "^5.0.10"
100 },
101 "devDependencies": {
102 "@istanbuljs/nyc-config-typescript": "^1.0.2",
103 "@mikro-orm/cli": "^5.4.2",
104 "@release-it/bumper": "^4.0.0",
105 "@rollup/plugin-json": "^5.0.1",
106 "@types/mocha": "^10.0.0",
107 "@types/mochawesome": "^6.2.1",
108 "@types/node": "^18.11.5",
109 "@types/proper-lockfile": "^4.1.2",
110 "@types/tar": "^6.1.3",
111 "@types/ws": "^8.5.3",
112 "@typescript-eslint/eslint-plugin": "^5.41.0",
113 "@typescript-eslint/parser": "^5.41.0",
114 "auto-changelog": "^2.4.0",
115 "c8": "^7.12.0",
116 "clinic": "^12.0.0",
117 "cross-env": "^7.0.3",
118 "eslint": "^8.26.0",
119 "eslint-config-prettier": "^8.5.0",
120 "eslint-import-resolver-typescript": "^3.5.2",
121 "eslint-plugin-import": "^2.26.0",
122 "eslint-plugin-jsdoc": "^39.3.25",
123 "eslint-plugin-n": "^15.3.0",
124 "eslint-plugin-prettier": "^4.2.1",
125 "expect": "^29.2.2",
126 "husky": "^8.0.1",
127 "lint-staged": "^13.0.3",
128 "mocha": "^10.1.0",
129 "mochawesome": "^7.1.3",
130 "prettier": "^2.7.1",
131 "release-it": "^15.5.0",
132 "robohydra": "^0.6.9",
133 "rollup": "^2.79.1",
134 "rollup-plugin-analyzer": "^4.0.0",
135 "rollup-plugin-copy": "^3.4.0",
136 "rollup-plugin-delete": "^2.0.0",
137 "rollup-plugin-terser": "^7.0.2",
138 "rollup-plugin-ts": "^3.0.2",
139 "semver": "^7.3.8",
140 "ts-node": "^10.9.1",
141 "typescript": "^4.8.4"
142 }
143 }