forked from somanos/ovh-bill
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.28 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.28 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
{
"name": "ovh-cost-manager",
"description": "OVH Cost Manager - Interactive dashboard for OVHcloud billing analysis",
"version": "2.2.0",
"private": true,
"homepage": "https://github.com/mmaudet/ovh-cost-manager",
"author": "Michel-Marie MAUDET <mmaudet@linagora.com>",
"repository": {
"type": "git",
"url": "https://github.com/mmaudet/ovh-cost-manager"
},
"bugs": {
"url": "https://github.com/mmaudet/ovh-cost-manager/issues"
},
"license": "MIT",
"workspaces": [
"cli",
"data",
"server",
"dashboard"
],
"scripts": {
"cli": "node cli/index.js",
"split": "node cli/split-by-project.js",
"bills": "node cli/bills-by-project.js",
"import": "node data/import.js",
"import:full": "node data/import.js --full",
"import:diff": "node data/import.js --diff",
"dev:server": "node server/index.js",
"dev:dashboard": "npm run dev --workspace=dashboard",
"dev": "concurrently \"npm run dev:server\" \"npm run dev:dashboard\"",
"build": "npm run build --workspace=dashboard",
"start": "npm run dev:server",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"devDependencies": {
"concurrently": "^8.2.2",
"jest": "^30.2.0"
}
}