package.json 2.86 KB
Newer Older
Joseph Axisa's avatar
Joseph Axisa committed
1
2
{
  "name": "@looker/api-explorer",
3
  "version": "0.9.12",
Joseph Axisa's avatar
Joseph Axisa committed
4
  "description": "Looker API Explorer",
5
6
7
  "main": "lib/index.js",
  "module": "lib/esm/index.js",
  "sideEffects": "false",
8
9
  "typings": "lib/index.d.ts",
  "license": "MIT",
10
  "author": "Looker",
11
  "private": false,
12
13
14
  "publishConfig": {
    "access": "public"
  },
Joseph Axisa's avatar
Joseph Axisa committed
15
16
17
18
19
  "repository": {
    "type": "git",
    "url": "git+https://github.com/looker-open-source/sdk-codegen.git",
    "directory": "packages/api-explorer"
  },
John Kaster's avatar
John Kaster committed
20
  "homepage": "https://github.com/looker-open-source/sdk-codegen/tree/main/packages/api-explorer",
Joseph Axisa's avatar
Joseph Axisa committed
21
22
23
24
  "bugs": {
    "url": "https://github.com/looker-open-source/sdk-codegen/issues"
  },
  "scripts": {
25
    "test": "jest",
26
    "analyze": "export ANALYZE_MODE=static && yarn build",
Joseph Axisa's avatar
Joseph Axisa committed
27
    "build": "tsc && webpack --config webpack.prod.config.js",
28
    "develop": "webpack serve --host=0.0.0.0 --https --disable-host-check --config webpack.dev.config.js",
29
    "docs": "typedoc --mode file --out docs",
30
    "watch": "yarn lerna exec --scope @looker/api-explorer --stream 'BABEL_ENV=build babel src --root-mode upward --out-dir lib/esm --source-maps --extensions .ts,.tsx --no-comments --watch'"
Joseph Axisa's avatar
Joseph Axisa committed
31
32
  },
  "devDependencies": {
33
    "@looker/components-test-utils": "^1.3.1",
34
35
    "@looker/sdk-codegen-scripts": "^21.0.21",
    "@looker/sdk-node": "^21.8.2",
36
    "@styled-icons/styled-icon": "^10.6.3",
37
38
39
    "@testing-library/jest-dom": "^5.11.6",
    "@testing-library/react": "^11.2.2",
    "@testing-library/user-event": "^12.6.0",
40
    "@types/lodash": "^4.14.157",
41
    "@types/react": "^16.14.2",
Joseph Axisa's avatar
Joseph Axisa committed
42
    "@types/react-dom": "^16.9.6",
43
44
    "@types/react-router": "^5.1.11",
    "@types/react-router-dom": "^5.1.5",
45
    "@types/react-test-renderer": "^16.9.3",
46
    "@types/redux": "^3.6.0",
47
    "@types/styled-components": "^5.1.7",
Joseph Axisa's avatar
Joseph Axisa committed
48
49
50
    "babel-loader": "^8.1.0",
    "css-loader": "^3.4.2",
    "jest-config": "^25.3.0",
51
    "jest-localstorage-mock": "^2.4.9",
52
    "react-test-renderer": "^17.0.1",
Joseph Axisa's avatar
Joseph Axisa committed
53
    "style-loader": "^1.1.3",
54
55
    "webpack-bundle-analyzer": "^4.2.0",
    "webpack-cli": "^4.6.0",
56
57
    "webpack-dev-server": "^3.11.2",
    "webpack-merge": "^5.7.3"
Joseph Axisa's avatar
Joseph Axisa committed
58
59
  },
  "dependencies": {
60
    "@looker/code-editor": "^0.1.5",
61
62
63
    "@looker/components": "^1.4.1",
    "@looker/design-tokens": "^1.3.1",
    "@looker/icons": "^1.3.0",
64
65
66
67
    "@looker/run-it": "^0.9.12",
    "@looker/sdk": "^21.8.3",
    "@looker/sdk-codegen": "^21.0.20",
    "@looker/sdk-rtl": "^21.0.16",
68
69
70
    "@styled-icons/material": "^10.28.0",
    "@styled-icons/material-outlined": "^10.28.0",
    "@styled-icons/material-rounded": "^10.28.0",
71
    "history": "^4.10.1",
72
    "lodash": "^4.17.19",
Joseph Axisa's avatar
Joseph Axisa committed
73
    "react": "^16.13.1",
John Kaster's avatar
John Kaster committed
74
    "react-diff-viewer": "^3.1.1",
Joseph Axisa's avatar
Joseph Axisa committed
75
76
    "react-dom": "^16.13.1",
    "react-is": "^16.13.1",
77
    "react-redux": "^7.2.3",
Joseph Axisa's avatar
Joseph Axisa committed
78
79
    "react-router": "^5.1.2",
    "react-router-dom": "^5.1.2",
80
    "redux": "^4.0.5",
81
    "styled-components": "^5.2.1",
82
    "ts-jest": "^26.2.0"
Joseph Axisa's avatar
Joseph Axisa committed
83
84
  }
}