-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.33 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.33 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
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "bubbles",
"version": "0.0.0",
"description": "",
"keywords": [],
"main": "index.js",
"author": "Jonathan Avila <jonathan@zoomdata.com>",
"repository": {
"type": "git",
"url": ""
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"precommit": "lint-staged",
"build": "webpack --env production",
"start": "webpack --env development"
},
"lint-staged": {
"src/**/*.{js,css}": [
"prettier --write --single-quote --trailing-comma=all",
"git add"
]
},
"devDependencies": {
"autoprefix": "^1.0.1",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-minify-webpack-plugin": "^0.2.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"clean-webpack-plugin": "^0.1.17",
"css-loader": "^0.28.9",
"cssnano": "^3.10.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"husky": "^0.14.3",
"lint-staged": "^5.0.0",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"postcss-loader": "^2.0.10",
"prettier": "^1.10.2",
"style-loader": "^0.19.1",
"webpack": "^3.10.0",
"webpack-merge": "^4.1.1"
},
"dependencies": {
"d3-hierarchy": "^1.1.5",
"echarts": "^4.0.2"
}
}