forked from dbuezas/lovelace-plotly-graph-card
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 898 Bytes
/
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
{
"name": "plotly-graph-card",
"version": "2.1.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "esbuild src/plotly-graph-card.ts --servedir=dist --outdir=dist --bundle --sourcemap=inline",
"build": "esbuild src/plotly-graph-card.ts --outdir=dist --bundle --minify",
"test": "jest",
"test:watch": "jest --watchAll",
"version": "npm run build && git add .",
"npm-upgrade": "npx npm-upgrade"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.17",
"@types/plotly.js": "^2.12.11",
"esbuild": "^0.16.10",
"ts-jest": "^29.0.3"
},
"dependencies": {
"custom-card-helpers": "^1.9.0",
"date-fns": "^2.29.3",
"deepmerge": "^4.2.2",
"lodash": "^4.17.21",
"plotly.js": "^2.14.0",
"simple-statistics": "^7.8.0"
}
}