-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3.03 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "cat-charts-react",
"version": "0.0.9",
"description": "A powerful React chart library based on qcharts",
"main": "lib/index.js",
"scripts": {
"start": "cross-env DEV_MODE=doc webpack-dev-server --config ./build/webpack.conf.dev.js",
"build": "npm run build:docs && npm run build:chart && echo 'Build successfully!'",
"build:docs": "rimraf docs && cross-env NODE_ENV=production webpack --config ./build/webpack.conf.prod.docs.js",
"build:chart": "rimraf lib && cross-env NODE_ENV=production webpack --config ./build/webpack.conf.prod.chart.js",
"prepublishOnly": "npm run build:chart"
},
"keywords": [
"visualization",
"react",
"qcharts",
"cat-charts-react"
],
"author": "justemit",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-decorators": "^7.2.3",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.4",
"@babel/runtime": "^7.2.0",
"ava": "^1.4.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-inline-package-json": "^2.0.0",
"bootstrap": "^4.3.1",
"canvas": "^2.4.1",
"canvas-5-polyfill": "^0.1.5",
"codemirror": "^5.42.2",
"cross-env": "^5.2.1",
"css-loader": "^2.1.0",
"eslint": "^5.12.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-ideal": "^1.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-html": "^5.0.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-standard": "^4.0.0",
"file-loader": "^3.0.1",
"happypack": "^5.0.1",
"highlight.js": "^9.13.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.0",
"markdown-it": "^8.4.2",
"markdown-it-container": "^2.0.0",
"mkdirp": "^0.5.1",
"node-sass": "^4.11.0",
"nyc": "^14.1.0",
"progress-bar-webpack-plugin": "^1.12.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.0",
"rimraf": "^2.6.3",
"sass-loader": "^7.1.0",
"scapegoat": "^1.0.0",
"split.js": "^1.5.10",
"spritejs": "^2.27.13",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.2",
"url-loader": "^1.1.2",
"vue-loader": "^15.5.1",
"vue-md-loader": "^1.1.0",
"vue-template-compiler": "^2.5.21",
"webpack": "^4.28.0",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.1.10",
"webpack-hot-middleware": "^2.24.3",
"webpack-merge": "^4.1.5"
},
"dependencies": {
"@qcharts/core": "^0.2.1",
"prop-types": "^15.7.2"
}
}