-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.09 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.09 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
{
"name": "scriptsmith-up",
"version": "0.1.0",
"description": "Up Bank API data source",
"scripts": {
"build": "grafana-toolkit plugin:build",
"build:api": "curl https://raw.githubusercontent.com/up-banking/api/master/v1/openapi.json | jq -f patch.jq > openapi.json | openapi-generator-cli generate -g typescript-fetch -i openapi.json --additional-properties=supportsES6=true,ensureUniqueParams=false -o src/up-api",
"test": "grafana-toolkit plugin:test",
"dev": "grafana-toolkit plugin:dev",
"watch": "grafana-toolkit plugin:dev --watch",
"sign": "grafana-toolkit plugin:sign",
"start": "yarn watch"
},
"author": "Adam Smith",
"license": "Apache-2.0",
"devDependencies": {
"@grafana/data": "latest",
"@grafana/runtime": "latest",
"@grafana/toolkit": "latest",
"@grafana/ui": "latest",
"@openapitools/openapi-generator-cli": "^2.5.2",
"@testing-library/jest-dom": "5.4.0",
"@testing-library/react": "^10.0.2",
"@types/lodash": "latest"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"@faker-js/faker": "^7.6.0"
}
}