-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.72 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 3.72 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "extension-template",
"version": "0.1.0",
"description": "",
"scripts": {
"start": "webpack-dev-server --no-inline --no-hot",
"test": "jest",
"build": "webpack --mode=production",
"lint": "eslint '**/*.ts{,x}'",
"lint-fix": "eslint '**/*.ts{,x}' --fix"
},
"license": "MIT",
"dependencies": {
"@looker/components": "^0.9.13",
"@looker/design-tokens": "^0.7.2",
"@looker/extension-sdk": "^0.11.0",
"@looker/extension-sdk-react": "^0.6.2",
"@looker/sdk": "^0.3.0-beta.1",
"@types/humanize-string": "^2.0.2",
"@types/jest": "^25.1.4",
"@types/lodash": "^4.14.139",
"@types/node": "^12.7.5",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@types/react-measure": "^2.0.5",
"@types/react-router-dom": "^5.1.0",
"@types/react-sticky-el": "^1.0.2",
"@types/react-syntax-highlighter": "^11.0.0",
"@types/react-test-renderer": "^16.9.2",
"@types/readable-stream": "^2.3.5",
"@types/recharts": "^1.1.21",
"@types/styled-components": "^4.4.0",
"@types/styled-system": "^5.1.3",
"@vx/axis": "^0.0.198",
"@vx/event": "^0.0.199",
"@vx/gradient": "^0.0.198",
"@vx/group": "^0.0.198",
"@vx/legend": "^0.0.198",
"@vx/mock-data": "^0.0.199",
"@vx/pattern": "^0.0.198",
"@vx/scale": "^0.0.198",
"@vx/shape": "^0.0.198",
"@vx/stats": "^0.0.198",
"@vx/tooltip": "^0.0.198",
"humanize-string": "^2.1.0",
"lodash": "^4.17.15",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-force-graph": "^1.27.1",
"react-measure": "^2.3.0",
"react-router-dom": "^5.1.2",
"react-sticky-el": "^1.1.0",
"react-syntax-highlighter": "^11.0.2",
"recharts": "^1.7.1",
"styled-components": "^4.4.1",
"ts-jest": "^25.3.0",
"use-debounce": "^3.1.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"babel-preset-nano-react-app": "^0.1.0",
"css-loader": "^3.4.2",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-standard": "^4.0.1",
"file-loader": "^6.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.2.4",
"prettier": "^1.19.1",
"react-test-renderer": "^16.13.1",
"style-loader": "^1.1.3",
"ts-loader": "^6.2.2",
"typescript": "^3.8.3"
},
"babel": {
"presets": [
"@babel/preset-react",
"@babel/preset-typescript",
[
"@babel/preset-env",
{
"targets": {
"esmodules": true
}
}
]
],
"plugins": [
[
"@babel/plugin-proposal-class-properties",
{
"loose": true
}
],
[
"@babel/plugin-transform-react-jsx",
{
"pragmaFrag": "React.Fragment"
}
]
]
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/src/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/src/__mocks__/styleMock.js"
},
"transformIgnorePatterns": [
"/node_modules/?!(react-syntax-highlighter)"
],
"testPathIgnorePatterns": [
"<rootDir>/src/__tests__/MockData"
]
}
}