-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.14 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.14 KB
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
{
"name": "js-graph",
"version": "1.0.1",
"description": "React/d3 application for building data-based graph",
"main": "index.js",
"scripts": {
"test": "echo \"hello\"",
"build": "webpack --env.prod && cp ./public/graph.xlsx.json ./build/",
"start": "webpack-dev-server --env.dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ilya144/js-graph.git"
},
"author": "kovboy777",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"babel-loader": "^8.0.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.2.0",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.8.0",
"raw-loader": "^4.0.0",
"react-svg-loader": "^3.0.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.9.0"
},
"dependencies": {
"react": "^16.11.0",
"react-dom": "^16.11.0",
"d3": "^5.14.2",
"@material-ui/core": "^4.7.2",
"@material-ui/icons": "^4.5.1"
}
}