-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
74 lines (74 loc) · 1.96 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
{
"name": "greuler",
"description": "graph theory visualizations powered by d3 & webcola",
"main": "dist/greuler.js",
"version": "1.0.0",
"scripts": {
"start": "webpack serve",
"build": "webpack --env production && cp -r public/static dist && cp public/favicon.* dist",
"test": "jest"
},
"dependencies": {
"arrify": "^2.0.1",
"compute-lcg": "^1.0.0",
"d3-dispatch": "^1.0.3",
"d3-drag": "^1.1.0",
"d3-scale": "^1.0.6",
"d3-scale-chromatic": "^2.0.0",
"d3-selection": "^1.1.0",
"d3-shape": "^1.2.0",
"d3-timer": "^1.0.6",
"d3-transition": "^1.1.0",
"extend": "^3.0.2",
"webcola": "^3.4.0"
},
"devDependencies": {
"@babel/cli": "7.23.4",
"@babel/core": "7.23.6",
"@babel/preset-env": "7.23.6",
"@babel/preset-react": "7.23.3",
"@babel/preset-typescript": "7.23.3",
"@mojs/core": "^1.7.1",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"bulma": "^0.9.4",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.8.1",
"eslint-config-react-app": "^7.0.1",
"eslint-config-standard": "^17.1.0",
"html-webpack-plugin": "^5.5.4",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.7.6",
"mocha": "^10.2.0",
"prettier": "^3.1.1",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.1",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"svg-inline-loader": "^0.8.2",
"webpack": "5.89.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "^4.15.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mauriciopoppe/greuler.git"
},
"keywords": [
"graph",
"visualizations",
"graph-theory"
],
"files": [
"dist/greuler.js"
],
"author": "Mauricio Poppe",
"license": "MIT",
"bugs": {
"url": "https://github.com/mauriciopoppe/greuler/issues"
},
"homepage": "https://github.com/mauriciopoppe/greuler#readme"
}