Cleanups.
[e-mobility-charging-stations-simulator.git] / package.json
1 {
2 "name": "ev-simulator",
3 "version": "1.0.0",
4 "engines": {
5 "node": "14.x.x"
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 ],
20 "main": "dist/start.js",
21 "scripts": {
22 "prestart": "npm run build",
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",
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",
31 "grunt": "grunt",
32 "build": "npm run build:prod",
33 "build:mta": "mbt build",
34 "build:prod": "npm run grunt",
35 "build:dev": "npm run grunt -- ts:dev",
36 "build:clean": "rimraf ./dist",
37 "lint": "cross-env TIMING=1 eslint --ext .js,.ts src",
38 "lint:fix": "cross-env TIMING=1 eslint --fix --ext .js,.ts src",
39 "tsc": "tsc",
40 "test": "echo \"Error: no tests implemented\" && exit 1",
41 "clinic:clean": "clinic clean",
42 "npm-check": "npm-check",
43 "git:sinit": "git submodule update --init --recursive --force",
44 "git:sdiff": "git diff && git submodule foreach 'git diff'",
45 "git:supdate": "git submodule update --remote --merge",
46 "git:spush": "git push --recurse-submodules=on-demand"
47 },
48 "dependencies": {
49 "mongodb": "^3.6.3",
50 "source-map-support": "^0.5.19",
51 "tslib": "^2.1.0",
52 "uuid": "^8.3.2",
53 "winston": "^3.3.3",
54 "winston-daily-rotate-file": "^4.5.0",
55 "worker-threads-pool": "^2.0.0",
56 "ws": "^7.4.2"
57 },
58 "optionalDependencies": {
59 "bufferutil": "^4.0.3",
60 "utf-8-validate": "^5.0.4"
61 },
62 "devDependencies": {
63 "@types/node": "^14.14.22",
64 "@types/uuid": "^8.3.0",
65 "@types/worker-threads-pool": "^2.0.0",
66 "@types/ws": "^7.4.0",
67 "@typescript-eslint/eslint-plugin": "^4.14.0",
68 "@typescript-eslint/parser": "^4.14.0",
69 "clinic": "^8.0.1",
70 "cross-env": "^7.0.3",
71 "eslint": "^7.18.0",
72 "grunt": "^1.3.0",
73 "grunt-ts": "^6.0.0-beta.22",
74 "mbt": "^1.1.0",
75 "npm-check": "^5.9.2",
76 "rimraf": "^3.0.2",
77 "ts-node-dev": "^1.1.1",
78 "typescript": "^4.1.3"
79 }
80 }