forked from sap-labs-france/ev-simulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.51 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "ev-simulator",
"version": "1.0.0",
"engines": {
"node": "14.x.x"
},
"repository": {
"type": "git",
"url": "https://github.com/LucasBrazi06/ev-simulator.git"
},
"description": "Electric Vehicle charging stations simulator",
"author": "SAP E-Mobility Labs France <[email protected]>",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"main": "dist/start.js",
"scripts": {
"prestart": "npm run build",
"start": "node -r source-map-support/register dist/start.js",
"start:dev": "ts-node-dev -- src/start.ts",
"start:dev:debug": "ts-node-dev --inspect -- src/start.ts",
"start:debug": "node -r source-map-support/register --inspect dist/start.js",
"start:prof": "node -r source-map-support/register --prof dist/start.js",
"start:doctorprof": "clinic doctor -- node -r source-map-support/register dist/start.js",
"start:flameprof": "clinic flame -- node -r source-map-support/register dist/start.js",
"start:bubbleprof": "clinic bubbleprof -- node -r source-map-support/register dist/start.js",
"grunt": "grunt",
"build": "npm run build:prod",
"build:prod": "npm run grunt",
"build:dev": "npm run grunt -- ts:dev",
"build:clean": "rimraf ./dist",
"lint": "cross-env TIMING=1 eslint --ext .js,.ts src",
"lint:fix": "cross-env TIMING=1 eslint --fix --ext .js,.ts src",
"tsc": "tsc",
"test": "echo \"Error: no tests implemented\" && exit 1",
"clinic:clean": "clinic clean",
"npm-check": "npm-check",
"git:sdiff": "git diff && git submodule foreach 'git diff'",
"git:supdate": "git submodule update --remote --merge",
"git:spush": "git push --recurse-submodules=on-demand"
},
"dependencies": {
"source-map-support": "^0.5.19",
"tslib": "^2.0.3",
"uuid": "^8.3.1",
"winston": "^3.3.3",
"worker-threads-pool": "^2.0.0",
"ws": "^7.4.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.2",
"utf-8-validate": "^5.0.3"
},
"devDependencies": {
"@types/node": "^14.14.6",
"@types/uuid": "^8.3.0",
"@types/worker-threads-pool": "^2.0.0",
"@types/ws": "^7.2.9",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"clinic": "^7.0.0",
"cross-env": "^7.0.2",
"eslint": "^7.13.0",
"grunt": "^1.3.0",
"grunt-ts": "^6.0.0-beta.22",
"npm-check": "^5.9.2",
"rimraf": "^3.0.2",
"ts-node-dev": "^1.0.0",
"typescript": "^4.0.5"
}
}