-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.42 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.42 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
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
75
76
77
78
79
80
{
"name": "extension-typescript-template",
"version": "0.0.1",
"description": "Bootstrapped Looker Extension with React and Typescript",
"main": "dist/bundle.js",
"author": "yournamehere",
"license": "Apache-2.0",
"scripts": {
"analyze": "export ANALYZE_MODE=static && yarn build",
"build": "set BABEL_ENV=build && webpack --config webpack.prod.js",
"dev": "webpack serve --hot --port 8080 --disable-host-check --config webpack.develop.js"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@looker/embed-sdk": "^1.8.0",
"@looker/extension-sdk": "^25.4.0",
"@looker/extension-sdk-react": "^25.4.0",
"@looker/sdk": "^22.20.0",
"@looker/sdk-rtl": "^21.4.0",
"@mui/material": "^7.1.0",
"@tanstack/react-table": "^8.21.3",
"bootstrap": "^5.3.3",
"css-loader": "^7.1.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-is": "^16.13.1",
"react-router-dom": "^5.3.0",
"semver": "^7.3.5",
"style-loader": "^4.0.0",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-object-rest-spread": "^7.16.0",
"@babel/plugin-transform-react-jsx": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@babel/runtime": "^7.16.0",
"@types/lodash": "^4.14.176",
"@types/node": "^14.14.12",
"@types/react": "^16.14.2",
"@types/react-dom": "^16.9.10",
"@types/react-router-dom": "^5.1.5",
"@types/readable-stream": "^2.3.5",
"@types/semver": "^7.3.1",
"@types/styled-components": "5.1.5",
"babel-loader": "^8.2.3",
"babel-loader-exclude-node-modules-except": "^1.2.1",
"babel-preset-nano-react-app": "^0.1.0",
"minimist": "^1.2.5",
"nodemon": "^2.0.14",
"npm-run-all": "^4.1.5",
"typescript": "4.4.4",
"webpack": "^5.10.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^3.11.2"
},
"babel": {
"presets": [
"nano-react-app"
],
"plugins": [
[
"@babel/plugin-proposal-class-properties"
],
[
"@babel/plugin-transform-react-jsx",
{
"pragmaFrag": "React.Fragment"
}
]
]
}
}