-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
74 lines (74 loc) · 2.02 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
66
67
68
69
70
71
72
73
74
{
"name": "react-powerbi",
"version": "0.9.1",
"description": "Easily embed your PowerBI Dashboard to your React App",
"main": "lib/react-powerbi.min.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "webpack --env build --mode=production",
"dev": "webpack --progress --colors --watch --env dev ",
"test": "jest",
"test:watch": "jest --watch",
"example": "parcel example/index.html"
},
"devDependencies": {
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^25.2.2",
"@types/react": "^16.9.34",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"awesome-typescript-loader": "^5.2.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^3.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"eslint": "^6.8.0",
"eslint-loader": "^4.0.0",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"jest": "^25.0.0",
"jsdom": "^11.12.0",
"jsdom-global": "^3.0.2",
"parcel-bundler": "^1.12.4",
"react": "^16.13.1",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"ts-jest": "^25.5.1",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"yargs": "7.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/howlowck/react-powerbi"
},
"keywords": [
"powerbi",
"react",
"powerbi embedded",
"embedded",
"BI",
"components",
"react component"
],
"author": "Hao Luo",
"license": "MIT",
"bugs": {
"url": "https://github.com/howlowck/react-powerbi/issues"
},
"homepage": "https://github.com/howlowck/react-powerbi",
"dependencies": {
"powerbi-client": "^2.11.0"
},
"peerDependencies": {
"react": "^16.8.0"
}
}