-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 loc) · 3.2 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "helloworld-js",
"version": "0.1.0",
"description": "Looker Extension Hello World JavaScript Demo",
"main": "dist/bundle.js",
"scripts": {
"analyze": "export ANALYZE_MODE=static && yarn build",
"build": "export BABEL_ENV=build && webpack --config webpack.prod.js",
"clean": "rm -rf dist",
"develop": "webpack serve --hot --port 8080 --disable-host-check --config webpack.develop.js",
"prebuild": "yarn clean",
"lint:es": "eslint 'src/**/*.js{,x}' --cache",
"lint:es:fix": "eslint 'src/**/*.js{,x}' --cache --fix",
"test": "jest"
},
"author": "Looker",
"license": "MIT",
"engines": {
"node": ">=12"
},
"dependencies": {
"@looker/components": "^1.1.6",
"@looker/embed-sdk": "^1.6.0",
"@looker/extension-sdk": "^21.4.5",
"@looker/extension-sdk-react": "^21.4.5",
"@looker/icons": "1.1.5",
"@looker/sdk": "^21.4.3",
"@looker/sdk-rtl": "^21.0.12",
"@styled-icons/material": "10.28.0",
"@styled-icons/material-outlined": "10.28.0",
"@styled-icons/material-rounded": "10.28.0",
"lodash": "^4.17.21",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-is": "^16.13.1",
"react-router-dom": "^5.1.2",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-react-jsx": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@babel/preset-react": "^7.12.10",
"@babel/runtime": "^7.12.5",
"@looker/components-test-utils": "^1.1.5",
"@looker/eslint-config": "^0.10.4",
"@looker/prettier-config": "^0.10.4",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^12.6.0",
"babel-loader": "^8.2.2",
"babel-preset-nano-react-app": "^0.1.0",
"dotenv": "^8.2.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.2",
"eslint-import-resolver-webpack": "^0.12.1",
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jest-dom": "^3.8.1",
"eslint-plugin-mdx": "^1.6.8",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^4.2.0",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"jest-styled-components": "^7.0.3",
"prettier": "^2.1.1",
"react-hot-loader": "^4.12.20",
"react-test-renderer": "^17.0.1",
"webpack": "^5.10.0",
"webpack-bundle-analyzer": "^4.2.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.10.3"
},
"babel": {
"presets": [
"nano-react-app"
],
"plugins": [
[
"@babel/plugin-proposal-class-properties",
{
"loose": true
}
],
[
"@babel/plugin-transform-react-jsx",
{
"pragmaFrag": "React.Fragment"
}
]
]
}
}