forked from bytecodeio/new-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.42 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
{
"name": "custom-vis-react-template",
"version": "1.0.0",
"private": true,
"description": "Template for developing a Looker custom visualization with React",
"main": "src/customVis.js",
"scripts": {
"start": "webpack serve --https",
"build": "webpack --config webpack.prod.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/preset-env": "^7.22.2",
"@babel/preset-react": "^7.16.7",
"autoprefixer": "^10.4.14",
"babel-loader": "^8.3.0",
"css-loader": "^6.8.1",
"postcss-loader": "^7.3.1",
"sass": "^1.62.1",
"sass-loader": "^13.3.0",
"style-loader": "^3.3.3",
"webpack": "^5.84.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0"
},
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@looker/components": "^4.0.3",
"@mui/icons-material": "^5.10.9",
"@mui/material": "^5.10.9",
"@mui/x-data-grid": "^5.17.6",
"@mui/x-data-grid-pro": "^5.17.6",
"@popperjs/core": "^2.11.7",
"bootstrap": "^5.3.0",
"chart.js": "^4.2.1",
"core-js": "^3.25.5",
"jquery": "^3.7.0",
"popper.js": "^1.16.1",
"react": "^18.2.0",
"react-bootstrap": "^2.7.4",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-sparklines": "^1.7.0",
"react-table": "^7.8.0",
"styled-components": "^5.3.6",
"to-string-loader": "^1.2.0"
}
}