Add type sanity check to ChangeConfiguration OCPP command
[e-mobility-charging-stations-simulator.git] / package.json
CommitLineData
7dde0b73
JB
1{
2 "name": "ev-simulator",
3 "version": "1.0.0",
4 "engines": {
8575f275 5 "node": "14.x.x"
7dde0b73
JB
6 },
7 "repository": {
8 "type": "git",
9 "url": "https://github.com/LucasBrazi06/ev-simulator.git"
10 },
11 "description": "Electric Vehicle charging stations simulator",
12 "author": "SAP E-Mobility Labs France <e-mobility@sap.com>",
13 "license": "Apache-2.0",
14 "licenses": [
15 {
16 "type": "Apache-2.0",
17 "url": "http://www.apache.org/licenses/LICENSE-2.0"
18 }
19 ],
6af9012e 20 "main": "dist/start.js",
7dde0b73 21 "scripts": {
6af9012e 22 "prestart": "npm run build",
44b5e61d
JB
23 "start": "node -r source-map-support/register dist/start.js",
24 "start:dev": "ts-node-dev -- src/start.ts",
25 "start:dev:debug": "ts-node-dev --inspect -- src/start.ts",
79411696
JB
26 "start:debug": "node -r source-map-support/register --inspect dist/start.js",
27 "start:prof": "node -r source-map-support/register --prof dist/start.js",
28 "start:doctorprof": "clinic doctor -- node -r source-map-support/register dist/start.js",
29 "start:flameprof": "clinic flame -- node -r source-map-support/register dist/start.js",
30 "start:bubbleprof": "clinic bubbleprof -- node -r source-map-support/register dist/start.js",
44b5e61d
JB
31 "grunt": "grunt",
32 "build": "npm run build:prod",
33 "build:prod": "npm run grunt",
34 "build:dev": "npm run grunt -- ts:dev",
861b1963 35 "build:clean": "rimraf ./dist",
6af9012e
JB
36 "lint": "cross-env TIMING=1 eslint --ext .js,.ts src",
37 "lint:fix": "cross-env TIMING=1 eslint --fix --ext .js,.ts src",
38 "tsc": "tsc",
39 "test": "echo \"Error: no tests implemented\" && exit 1",
7dde0b73 40 "clinic:clean": "clinic clean",
e27fae42 41 "npm-check": "npm-check",
c718e93d 42 "git:sdiff": "git diff && git submodule foreach 'git diff'",
e27fae42
JB
43 "git:supdate": "git submodule update --remote --merge",
44 "git:spush": "git push --recurse-submodules=on-demand"
7dde0b73
JB
45 },
46 "dependencies": {
79411696 47 "source-map-support": "^0.5.19",
6af9012e 48 "tslib": "^2.0.3",
7b7b6397 49 "uuid": "^8.3.1",
8235566f 50 "winston": "^3.3.3",
7ec46a9a 51 "winston-daily-rotate-file": "^4.5.0",
7dde0b73 52 "worker-threads-pool": "^2.0.0",
0f59e654 53 "ws": "^7.4.0"
7dde0b73 54 },
3d337bdb
JB
55 "optionalDependencies": {
56 "bufferutil": "^4.0.2",
57 "utf-8-validate": "^5.0.3"
58 },
7dde0b73 59 "devDependencies": {
65d29a21 60 "@types/node": "^14.14.10",
6af9012e
JB
61 "@types/uuid": "^8.3.0",
62 "@types/worker-threads-pool": "^2.0.0",
6b0ce541 63 "@types/ws": "^7.4.0",
e7af9ed1
JB
64 "@typescript-eslint/eslint-plugin": "^4.9.0",
65 "@typescript-eslint/parser": "^4.9.0",
55e89ef8 66 "clinic": "^8.0.1",
6af9012e 67 "cross-env": "^7.0.2",
4345285f 68 "eslint": "^7.14.0",
44b5e61d
JB
69 "grunt": "^1.3.0",
70 "grunt-ts": "^6.0.0-beta.22",
6af9012e 71 "npm-check": "^5.9.2",
861b1963 72 "rimraf": "^3.0.2",
44b5e61d 73 "ts-node-dev": "^1.0.0",
df85700c 74 "typescript": "^4.1.2"
7dde0b73
JB
75 }
76}