-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
65 lines (65 loc) · 1.68 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
{
"name": "superset-indicator-chart",
"version": "0.0.9",
"description": "Indicator chart plugin for Apache Superset",
"main": "src/chart.ts",
"scripts": {
"test": "jest",
"tdd": "NODE_ENV=test jest --watch",
"build": "NODE_ENV=development webpack --mode=development --color",
"build:watch": "NODE_ENV=development webpack --mode=development --color --watch",
"build:prod": "NODE_ENV=production webpack --mode=production --color",
"serve": "http-server dist -c-1 --cors"
},
"keywords": [
"superset",
"superset-ui",
"indicator",
"chart",
"plugin"
],
"author": "Ivan Krsnik",
"license": "Apache-2.0",
"dependencies": {
"antd": "^4.9.4",
"process": "^0.11.10",
"react-icons": "^4.2.0",
"react-loadable": "^5.5.0",
"vm-browserify": "^1.1.2"
},
"devDependencies": {
"@babel/preset-env": "^7.12.11",
"@emotion/babel-plugin": "^11.3.0",
"@emotion/react": "^11.3.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"http-server": "^0.12.3",
"jest": "^26.6.3",
"path": "^0.12.7",
"prettier": "2.2.1",
"thread-loader": "^3.0.3",
"ts-loader": "^9.0.0",
"typescript": "^4.0.3",
"url-loader": "^4.1.1",
"webpack": "^5.37.1",
"webpack-cli": "^4.6.0"
},
"peerDependencies": {
"@superset-ui/chart-controls": "^0.18.25",
"@superset-ui/core": "^0.18.25",
"react": "^16.13.1",
"react-dom": "^16.13.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"repository": {
"type": "git",
"url": "https://github.com/krsnik93/superset-indicator-chart"
}
}