-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.35 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
{
"name": "trial-homepage",
"version": "0.0.1",
"description": "",
"main": "dist/bundle.js",
"scripts": {
"start": "webpack-dev-server --hot --disable-host-check --port 8080",
"start-no-hot": "webpack-dev-server --no-inline --no-hot --port 8080",
"build": "export BABEL_ENV=build && tsc --noEmit && webpack --mode=production --config webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Looker",
"license": "MIT",
"engines": {
"node": ">=10"
},
"dependencies": {
"@looker/components": "0.7.31",
"@looker/extension-sdk": "^0.7.2",
"@looker/extension-sdk-react": "^0.5.1",
"@looker/sdk": "^0.3.0-beta.1",
"@types/node": "^14.0.3",
"@types/react-router-dom": "^5.1.5",
"@types/readable-stream": "^2.3.6",
"@types/styled-components": "5.1.0",
"@types/styled-system": "^5.1.9",
"babel-loader": "^8.1.0",
"bootstrap": "^4.5.0",
"lodash": "^4.17.15",
"minimist": "^1.2.5",
"react": "^16.13.1",
"react-bootstrap": "^1.0.1",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.12.21",
"react-router-dom": "^5.2.0",
"react-youtube": "^7.11.2",
"styled-components": "^5.1.0",
"styled-system": "^5.1.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
"@babel/plugin-transform-react-jsx": "^7.9.4",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@babel/runtime": "^7.9.6",
"@types/lodash": "^4.14.151",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"babel-preset-nano-react-app": "^0.1.0",
"css-loader": "^3.5.3",
"style-loader": "^1.2.1",
"typescript": "^3.8.2"
},
"resolutions": {
"@types/react": "^16.9.35"
},
"babel": {
"presets": [
"nano-react-app"
],
"plugins": [
[
"@babel/plugin-proposal-class-properties",
{
"loose": true
}
],
[
"@babel/plugin-transform-react-jsx",
{
"pragmaFrag": "React.Fragment"
}
]
]
}
}