-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
62 lines (62 loc) · 2.41 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
{
"license": "MIT",
"name": "extension-examples",
"version": "0.8.1",
"description": "Looker extension examples",
"author": "Looker",
"private": true,
"workspaces": [
"react/javascript/*",
"react/typescript/*",
"vanilla/*"
],
"scripts": {
"clean": "npm run clean --workspaces --if-present",
"clean:all": "rm -rf node_modules && npm run clean:all --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"lint:fix": "npm run lint:fix --workspaces --if-present",
"tsc": "npm run tsc --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"uberext": "ts-node ./scripts/create_uber_extension_project.ts",
"update-packages": "ts-node ./scripts/update_packages.ts",
"dev:demo-core-sdk": "npm run -w=demo-core-sdk develop",
"dev:demo-embeds": "npm run -w=demo-embeds develop",
"dev:demo-extension-sdk": "npm run -w=demo-extension-sdk develop",
"dev:demo-external-api": "npm run -w=demo-external-api develop",
"dev:file-download": "npm run -w=file-download develop",
"dev:file-upload": "npm run -w=file-upload develop",
"dev:file-upload-server": "npm run -w=file-upload server",
"dev:helloworld-js": "npm run -w=helloworld-js develop",
"dev:map-iframe": "npm run -w=map-iframe develop",
"dev:tile-visualization": "npm run -w=tile-visualization develop",
"dev:tile-sdk": "npm run -w=tile-sdk develop",
"dev:access-key-demo": "npm run -w=access-key-demo develop",
"dev:access-key-demo-server": "npm run -w=access-key-demo start-server",
"dev:helloworld-ts": "npm run -w=helloworld-ts develop",
"dev:kitchensink": "npm run -w=kitchensink develop",
"dev:looks-query": "npm run -w=looks-query develop",
"dev:looks-query-redux": "npm run -w=looks-query-redux develop",
"dev:counter": "npm run -w=counter develop",
"dev:counter-ts": "npm run -w=counter-ts develop"
},
"devDependencies": {
"@types/node": "^15.3.0",
"@types/yargs": "^16.0.2"
},
"dependencies": {
"ts-node": "^10.8.1",
"typescript": "4.6.3",
"yargs": "^17.0.1"
},
"overrides": {
"trim": "^0.0.3",
"ansi-regex": "5.0.1",
"minimist": "^1.2.6",
"async": "^2.6.4",
"loader-utils": "^1.4.2",
"source-map": "^0.8.0-beta.0",
"@looker/eslint-config-oss": "1.7.14",
"@typescript-eslint/typescript-estree": "^5.59.2"
}
}