-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.13 KB
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
{
"name": "migrid-core",
"version": "10.1.6",
"description": "The Operating System for Sustainable Fleet Electrification",
"private": true,
"workspaces": [
"services/*",
"packages/*",
"apps/*"
],
"scripts": {
"start": "docker-compose up",
"start:dev": "docker-compose up --build",
"stop": "docker-compose down",
"seed": "node scripts/seed-physics.js",
"test": "jest",
"test:services": "lerna run test",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "lerna run build",
"clean": "lerna clean -y && rm -rf node_modules"
},
"devDependencies": {
"lerna": "^7.0.0",
"typescript": "^5.0.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"nodemon": "^3.0.0",
"axios": "^1.6.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/dcplatforms/Migrid.git"
},
"keywords": [
"ev-charging",
"fleet-management",
"v2g",
"vpp",
"energy-management",
"openadr",
"ocpp",
"blockchain"
],
"author": "MiGrid Contributors",
"license": "Apache-2.0"
}