-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
105 lines (105 loc) · 3.15 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
104
105
{
"name": "extension-template-kitchensink",
"version": "0.8.1",
"description": "Looker Extension SDK functionality demonstration",
"main": "dist/bundle.js",
"scripts": {
"clean": "rm -rf dist",
"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 --skipLibCheck --noEmit && webpack --mode=production --config webpack.prod.config.js",
"test": "echo \"Error: no test specified\" && exit 1",
"start-data-server": "cp db.json temp_db.json && nodemon server/index.js"
},
"author": "Looker",
"license": "MIT",
"engines": {
"node": ">=10"
},
"dependencies": {
"@hot-loader/react-dom": "^16.13.0",
"@looker/components": "0.9.6",
"@looker/embed-sdk": "1.0.0-beta.6",
"@looker/extension-sdk": "^0.11.0",
"@looker/extension-sdk-react": "^0.6.2",
"@looker/sdk": "0.3.0-beta.1",
"@octokit/core": "^3.1.2",
"@types/node": "^12.7.5",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.3",
"@types/react-router-dom": "^5.1.0",
"@types/readable-stream": "^2.3.5",
"@types/semver": "^7.3.3",
"@types/styled-components": "4.1.8",
"@types/styled-system": "^5.1.3",
"ag-grid-community": "^23.2.1",
"ag-grid-react": "^23.2.1",
"axios": "^0.19.2",
"babel-loader": "^8.0.6",
"date-fns": "^2.16.1",
"dotenv": "^8.2.0",
"file-loader": "^6.1.0",
"github-api": "^3.3.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"minimist": "^1.2.2",
"moment": "^2.24.0",
"nodemon": "^2.0.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.12.20",
"react-papaparse": "^3.7.3",
"react-router-dom": "^5.1.2",
"react-tabulator": "^0.13.2",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^1.2.1",
"semver": "^7.3.2",
"styled-components": "^4.4.1",
"styled-system": "^5.1.2",
"url-loader": "^4.1.0",
"uuid": "^8.3.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.10.3"
},
"devDependencies": {
"@babel/cli": "^7.11.5",
"@babel/core": "^7.11.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@babel/runtime": "^7.7.4",
"@types/lodash": "^4.14.161",
"@types/moment": "^2.13.0",
"babel-preset-nano-react-app": "^0.1.0",
"css-loader": "^3.5.2",
"json-server": "^0.16.1",
"style-loader": "^1.1.3",
"ttypescript": "^1.5.11",
"typescript": "3.8.2",
"typescript-plugin-styled-components": "^1.4.4"
},
"babel": {
"presets": [
"nano-react-app"
],
"plugins": [
[
"@babel/plugin-proposal-class-properties",
{
"loose": true
}
],
[
"@babel/plugin-transform-react-jsx",
{
"pragmaFrag": "React.Fragment"
}
]
]
}
}