Merge branch 'master' of github.com:LucasBrazi06/ev-simulator into rollup
[e-mobility-charging-stations-simulator.git] / package.json
CommitLineData
7dde0b73
JB
1{
2 "name": "ev-simulator",
3 "version": "1.0.0",
4 "engines": {
f6c5fd7e
JB
5 "node": "14.x.x",
6 "npm": "6.x.x"
7dde0b73
JB
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 ],
6af9012e 21 "main": "dist/start.js",
7dde0b73 22 "scripts": {
6af9012e 23 "prestart": "npm run build",
c4a19794 24 "start": "cross-env NODE_ENV=production node -r source-map-support/register dist/start.js",
c4a19794
JB
25 "start:debug": "cross-env NODE_ENV=production node -r source-map-support/register --inspect dist/start.js",
26 "start:prof": "cross-env NODE_ENV=production node -r source-map-support/register --prof dist/start.js",
27 "start:doctorprof": "cross-env NODE_ENV=production clinic doctor -- node -r source-map-support/register dist/start.js",
28 "start:flameprof": "cross-env NODE_ENV=production clinic flame -- node -r source-map-support/register dist/start.js",
29 "start:bubbleprof": "cross-env NODE_ENV=production clinic bubbleprof -- node -r source-map-support/register dist/start.js",
44b5e61d 30 "grunt": "grunt",
44b07a21
JB
31 "rollup": "rollup --config",
32 "build": "npm run grunt",
b9cadb84 33 "build:mta": "mbt build",
bf1866b2 34 "build:watch": "npm run grunt -- ts:buildWatch",
6af9012e
JB
35 "lint": "cross-env TIMING=1 eslint --ext .js,.ts src",
36 "lint:fix": "cross-env TIMING=1 eslint --fix --ext .js,.ts src",
c045d9a9 37 "import-sort": "npx import-sort-cli --write 'src/**/*.ts{,x}'",
6af9012e
JB
38 "tsc": "tsc",
39 "test": "echo \"Error: no tests implemented\" && exit 1",
7dde0b73 40 "clinic:clean": "clinic clean",
e27fae42 41 "npm-check": "npm-check",
5c97c3b3 42 "git:sinit": "git submodule update --init --recursive --force",
c718e93d 43 "git:sdiff": "git diff && git submodule foreach 'git diff'",
3a860d9e 44 "git:supdate": "git submodule update --remote --recursive --merge",
e27fae42 45 "git:spush": "git push --recurse-submodules=on-demand"
7dde0b73
JB
46 },
47 "dependencies": {
3a860d9e 48 "mongodb": "^3.6.4",
a4624c96 49 "poolifier": "^1.2.1",
79411696 50 "source-map-support": "^0.5.19",
0985805c 51 "tslib": "^2.1.0",
fe04f239 52 "uuid": "^8.3.2",
8235566f 53 "winston": "^3.3.3",
7ec46a9a 54 "winston-daily-rotate-file": "^4.5.0",
3a860d9e 55 "ws": "^7.4.3"
7dde0b73 56 },
3d337bdb 57 "optionalDependencies": {
17991e8c
JB
58 "bufferutil": "^4.0.3",
59 "utf-8-validate": "^5.0.4"
3d337bdb 60 },
7dde0b73 61 "devDependencies": {
c4a19794 62 "@types/node": "^14.14.27",
6af9012e 63 "@types/uuid": "^8.3.0",
6b0ce541 64 "@types/ws": "^7.4.0",
f777b564
JB
65 "@typescript-eslint/eslint-plugin": "^4.15.0",
66 "@typescript-eslint/parser": "^4.15.0",
55e89ef8 67 "clinic": "^8.0.1",
93b6750e 68 "cross-env": "^7.0.3",
c4a19794 69 "eslint": "^7.20.0",
44b5e61d 70 "grunt": "^1.3.0",
bf1866b2
JB
71 "grunt-contrib-clean": "^2.0.0",
72 "grunt-contrib-copy": "^1.0.0",
73 "grunt-mkdir": "^1.1.0",
44b5e61d 74 "grunt-ts": "^6.0.0-beta.22",
b0c01ea0 75 "mbt": "^1.1.0",
6af9012e 76 "npm-check": "^5.9.2",
c4a19794
JB
77 "rollup": "^2.39.0",
78 "rollup-plugin-copy": "^3.3.0",
44b07a21 79 "rollup-plugin-delete": "^2.0.0",
c4a19794 80 "rollup-plugin-typescript2": "^0.29.0",
fe76d87f 81 "typescript": "^4.1.5"
7dde0b73
JB
82 }
83}