scripts to set CS public or delete CS
[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:sdiff": "git diff && git submodule foreach 'git diff'",
44 "git:supdate": "git submodule update --remote --merge",
45 "git:spush": "git push --recurse-submodules=on-demand"
46 },
47 "dependencies": {
48 "mongodb": "^3.6.3",
49 "source-map-support": "^0.5.19",
50 "tslib": "^2.1.0",
51 "uuid": "^8.3.2",
52 "winston": "^3.3.3",
53 "winston-daily-rotate-file": "^4.5.0",
54 "worker-threads-pool": "^2.0.0",
55 "ws": "^7.4.2"
56 },
57 "optionalDependencies": {
58 "bufferutil": "^4.0.3",
59 "utf-8-validate": "^5.0.4"
60 },
61 "devDependencies": {
62 "@types/node": "^14.14.21",
63 "@types/uuid": "^8.3.0",
64 "@types/worker-threads-pool": "^2.0.0",
65 "@types/ws": "^7.4.0",
66 "@typescript-eslint/eslint-plugin": "^4.14.0",
67 "@typescript-eslint/parser": "^4.14.0",
68 "clinic": "^8.0.1",
69 "cross-env": "^7.0.3",
70 "eslint": "^7.18.0",
71 "grunt": "^1.3.0",
72 "grunt-ts": "^6.0.0-beta.22",
73 "mbt": "^1.1.0",
74 "npm-check": "^5.9.2",
75 "rimraf": "^3.0.2",
76 "ts-node-dev": "^1.1.1",
77 "typescript": "^4.1.3"
78 }
79 }