forked from willamesoares/learn-d3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.62 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
{
"name": "learn-d3",
"version": "1.0.0",
"description": "Basic D3.js project for learning purposes",
"main": "src/app.js",
"scripts": {
"start": "webpack serve --no-stats --open --hot --mode development",
"build": "webpack build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/willamesoares/learn-d3.git"
},
"keywords": [
"d3js"
],
"author": "Will Soares",
"license": "ISC",
"bugs": {
"url": "https://github.com/willamesoares/learn-d3/issues"
},
"homepage": "https://github.com/willamesoares/learn-d3#readme",
"devDependencies": {
"@types/d3": "^7.4.0",
"@types/d3-collection": "^1.0.10",
"copy-webpack-plugin": "^9.1.0",
"css-loader": "^6.7.3",
"expose-loader": "^3.1.0",
"file-loader": "^6.2.0",
"html-minimizer-webpack-plugin": "^3.5.0",
"html-webpack-plugin": "^5.5.0",
"imports-loader": "^3.1.1",
"mini-css-extract-plugin": "^2.7.2",
"resolve-url-loader": "^4.0.0",
"sass": "^1.58.0",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"@tensorflow/tfjs": "^4.2.0",
"@tensorflow/tfjs-backend-webgl": "^4.2.0",
"@tensorflow/tfjs-vis": "^1.5.1",
"@types/lodash": "^4.14.191",
"bootstrap": "^5.2.3",
"d3": "^7.8.2",
"d3-collection": "^1.0.7",
"d3-regression": "^1.3.10",
"date-fns": "^2.29.3",
"lodash": "^4.17.21",
"ml-regression": "^5.0.0",
"plotly": "^1.0.6"
}
}