Fix repo URI.
[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/sap-labs-france/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": "cross-env NODE_ENV=production node -r source-map-support/register dist/start.js",
25 "start:debug": "cross-env NODE_ENV=production node -r source-map-support/register --inspect dist/start.js",
26 "start:dev": "npm run build:dev && cross-env NODE_ENV=development node -r source-map-support/register dist/start.js",
27 "start:dev:debug": "npm run build:dev && cross-env NODE_ENV=development node -r source-map-support/register --inspect dist/start.js",
28 "start:prof": "cross-env NODE_ENV=production node -r source-map-support/register --prof dist/start.js",
29 "start:doctorprof": "cross-env NODE_ENV=production clinic doctor -- node -r source-map-support/register dist/start.js",
30 "start:flameprof": "cross-env NODE_ENV=production clinic flame -- node -r source-map-support/register dist/start.js",
31 "start:bubbleprof": "cross-env NODE_ENV=production clinic bubbleprof -- node -r source-map-support/register dist/start.js",
32 "rollup": "rollup --config",
33 "build": "npm run rollup",
34 "build:dev": "npm run rollup -- --environment BUILD:development",
35 "build:dev:watch": "npm run rollup -- --environment BUILD:development --watch",
36 "build:mta": "mbt build",
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 "import-sort": "npx import-sort-cli --write 'src/**/*.ts{,x}'",
40 "tsc": "tsc",
41 "test": "echo \"Error: no tests implemented\" && exit 1",
42 "clinic:clean": "clinic clean",
43 "npm-check": "npm-check",
44 "git:sinit": "git submodule update --init --recursive --force",
45 "git:sdiff": "git diff && git submodule foreach 'git diff'",
46 "git:supdate": "git submodule update --remote --recursive --merge",
47 "git:spush": "git push --recurse-submodules=on-demand"
48 },
49 "dependencies": {
50 "mongodb": "^3.6.6",
51 "poolifier": "^2.0.1",
52 "source-map-support": "^0.5.19",
53 "tslib": "^2.2.0",
54 "uuid": "^8.3.2",
55 "winston": "^3.3.3",
56 "winston-daily-rotate-file": "^4.5.2",
57 "ws": "^7.4.4"
58 },
59 "optionalDependencies": {
60 "bufferutil": "^4.0.3",
61 "utf-8-validate": "^5.0.4"
62 },
63 "devDependencies": {
64 "@types/node": "^14.14.37",
65 "@types/uuid": "^8.3.0",
66 "@types/ws": "^7.4.1",
67 "@typescript-eslint/eslint-plugin": "^4.21.0",
68 "@typescript-eslint/parser": "^4.21.0",
69 "clinic": "^8.0.1",
70 "cross-env": "^7.0.3",
71 "eslint": "^7.24.0",
72 "eslint-plugin-import": "^2.22.1",
73 "eslint-plugin-jsdoc": "^32.3.0",
74 "mbt": "^1.1.1",
75 "npm-check": "^5.9.2",
76 "rollup": "^2.45.1",
77 "rollup-plugin-analyzer": "^4.0.0",
78 "rollup-plugin-copy": "^3.4.0",
79 "rollup-plugin-delete": "^2.0.0",
80 "rollup-plugin-terser": "^7.0.2",
81 "rollup-plugin-typescript2": "^0.30.0",
82 "typescript": "^4.2.4"
83 }
84 }