5812d74a385f189ebe0df12e3ac9a1bc2c0c8238
[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 "npm": "6.x.x"
7 },
8 "repository": {
9 "type": "git",
10 "url": "https://github.com/LucasBrazi06/ev-simulator.git"
11 },
12 "description": "Electric Vehicle charging stations simulator",
13 "author": "SAP E-Mobility Labs France <e-mobility@sap.com>",
14 "license": "Apache-2.0",
15 "licenses": [
16 {
17 "type": "Apache-2.0",
18 "url": "http://www.apache.org/licenses/LICENSE-2.0"
19 }
20 ],
21 "main": "dist/start.js",
22 "scripts": {
23 "prestart": "npm run build",
24 "start": "node -r source-map-support/register dist/start.js",
25 "start:dev": "ts-node-dev -- src/start.ts",
26 "start:dev:debug": "ts-node-dev --inspect -- src/start.ts",
27 "start:debug": "node -r source-map-support/register --inspect dist/start.js",
28 "start:prof": "node -r source-map-support/register --prof dist/start.js",
29 "start:doctorprof": "clinic doctor -- node -r source-map-support/register dist/start.js",
30 "start:flameprof": "clinic flame -- node -r source-map-support/register dist/start.js",
31 "start:bubbleprof": "clinic bubbleprof -- node -r source-map-support/register dist/start.js",
32 "grunt": "grunt",
33 "build": "npm run build:prod",
34 "build:mta": "mbt build",
35 "build:prod": "npm run grunt",
36 "build:dev": "npm run grunt -- ts:dev",
37 "build:clean": "rimraf ./dist",
38 "lint": "cross-env TIMING=1 eslint --ext .js,.ts src",
39 "lint:fix": "cross-env TIMING=1 eslint --fix --ext .js,.ts src",
40 "import-sort": "npx import-sort-cli --write 'src/**/*.ts{,x}'",
41 "tsc": "tsc",
42 "test": "echo \"Error: no tests implemented\" && exit 1",
43 "clinic:clean": "clinic clean",
44 "npm-check": "npm-check",
45 "git:sinit": "git submodule update --init --recursive --force",
46 "git:sdiff": "git diff && git submodule foreach 'git diff'",
47 "git:supdate": "git submodule update --remote --recursive --merge",
48 "git:spush": "git push --recurse-submodules=on-demand"
49 },
50 "dependencies": {
51 "mongodb": "^3.6.4",
52 "poolifier": "^1.2.1",
53 "source-map-support": "^0.5.19",
54 "tslib": "^2.1.0",
55 "uuid": "^8.3.2",
56 "winston": "^3.3.3",
57 "winston-daily-rotate-file": "^4.5.0",
58 "ws": "^7.4.3"
59 },
60 "optionalDependencies": {
61 "bufferutil": "^4.0.3",
62 "utf-8-validate": "^5.0.4"
63 },
64 "devDependencies": {
65 "@types/node": "^14.14.25",
66 "@types/uuid": "^8.3.0",
67 "@types/ws": "^7.4.0",
68 "@typescript-eslint/eslint-plugin": "^4.15.0",
69 "@typescript-eslint/parser": "^4.15.0",
70 "clinic": "^8.0.1",
71 "cross-env": "^7.0.3",
72 "eslint": "^7.19.0",
73 "grunt": "^1.3.0",
74 "grunt-ts": "^6.0.0-beta.22",
75 "mbt": "^1.1.0",
76 "npm-check": "^5.9.2",
77 "rimraf": "^3.0.2",
78 "ts-node-dev": "^1.1.1",
79 "typescript": "^4.1.5"
80 }
81 }