-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.45 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
{
"name": "elfviz",
"version": "1.0.0",
"description": "ELF Data Structure Visualization",
"main": "src/index.jsx",
"scripts": {
"start": "webpack-dev-server",
"build": "webpack -d",
"build:prod": "webpack -p",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"author": "Dmitry Fedotov",
"license": "MIT",
"dependencies": {
"@babel/polyfill": "^7.8.7",
"classnames": "^2.2.6",
"d3-hierarchy": "^1.1.9",
"d3-scale": "^3.2.1",
"d3-scale-chromatic": "^1.5.0",
"d3-shape": "^1.3.7",
"file-saver": "^2.0.2",
"lodash": "^4.17.21",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-measure": "^2.3.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-preset-jest": "^26.0.0",
"clean-webpack-plugin": "^3.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"eslint": "^6.8.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.0.1",
"json-loader": "^0.5.7",
"react-test-renderer": "^16.13.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"jest": {
"globals": {
"VERSION": "1.0.1"
}
}
}