-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 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
{
"name": "superset-chart-hello-world",
"version": "0.0.0",
"description": "A sample chart plugin for Superset demonstrating current best practices",
"main": "src/chart.ts",
"scripts": {
"test": "jest",
"tdd": "NODE_ENV=test jest --watch",
"build": "NODE_ENV=development webpack --mode=development --colors",
"build:watch": "NODE_ENV=development webpack --mode=development --colors --watch",
"build:prod": "NODE_ENV=production webpack --mode=production --colors",
"serve": "http-server dist -c-1 --cors"
},
"keywords": [
"superset",
"superset-ui",
"hello",
"world",
"chart",
"dynamic",
"async",
"plugin"
],
"author": "David Aaron Suddjian",
"license": "Apache-2.0",
"devDependencies": {
"@airbnb/config-eslint": "^3.1.0",
"@babel/preset-env": "^7.10.3",
"@superset-ui/chart-controls": "^0.14.23",
"@superset-ui/core": "^0.15.17",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-emotion": "^10.0.33",
"clean-webpack-plugin": "^3.0.0",
"core-js": "^3.6.5",
"file-loader": "^6.0.0",
"http-server": "^0.12.3",
"jest": "^25.5.4",
"mini-css-extract-plugin": "^0.9.0",
"prettier": "^2.0.5",
"react": "^16.13.1",
"thread-loader": "^2.1.3",
"ts-loader": "^7.0.5",
"typescript": "^3.9.5",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-manifest-plugin": "^2.2.0",
"yargs": "^15.3.1"
},
"peerDependencies": {
"@superset-ui/chart-controls": "^0.14.23",
"@superset-ui/core": "^0.15.17",
"react": "^16.13.1"
},
"dependencies": {}
}