This repository has been archived by the owner on Nov 15, 2022. It is now read-only.
forked from looker/custom_visualizations_v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.43 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
{
"name": "looker-visualization-api-examples",
"version": "2.0.20",
"license": "MIT",
"description": "A selection of sample visualizations for use as Looker visualizations",
"main": "demo/index.html",
"directories": {
"lib": "lib",
"test": "tests"
},
"scripts": {
"build": "webpack --config webpack.config.js",
"watch": "webpack --config webpack.config.js --watch --progress",
"lint": "tslint --project tsconfig.json --format stylish 'src/**/*.ts'",
"lint-fix": "tslint --fix --project tsconfig.json --format stylish 'src/**/*.ts'",
"test": "jest"
},
"author": "",
"private": true,
"devDependencies": {
"@types/jquery": "^3.3.2",
"css-loader": "^0.28.11",
"d3": "^4.8.0",
"jquery": "^3.3.1",
"jsdom": "^11.11.0",
"pivottable": "^2.20.0",
"subtotal-multiple-aggregates": "4mile/subtotal-multiple-aggregates",
"to-string-loader": "^1.1.5",
"ts-loader": "3.2.0",
"tslint": "5.8.0",
"tslint-config-standard": "7.0.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "3.10.0",
"webpack-dev-server": "2.9.7"
},
"dependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@types/d3": "^5.0.0",
"@types/d3-sankey": "^0.7.4",
"babel-loader": "^8.0.5",
"d3-sankey": "^0.10.4",
"jest": "^24.1.0",
"react": "^16.8.3",
"react-dom": "^16.7.0",
"typescript": "^3.3.3333"
}
}