-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.54 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.54 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "react-analytics",
"version": "0.0.1",
"description": "Data visualization analysis editor developed with react, antd, echarts",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node clean && webpack -p --config webpack.prod.js",
"build:lib": "npm run tsc && webpack -p --config webpack.lib.js",
"start": "npm install && npm run start:dev",
"start:dev": "webpack-dev-server --config webpack.dev.js --inline",
"deploy": "npm run build:lib && npm publish",
"lint": "npm run tsc",
"clean": "node clean",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/salgum1114/react-analytics.git"
},
"keywords": [
"react",
"antd",
"echarts",
"analytics",
"editor"
],
"author": "salgum1114",
"license": "MIT",
"bugs": {
"url": "https://github.com/salgum1114/react-analytics/issues"
},
"homepage": "https://github.com/salgum1114/react-analytics#readme",
"dependencies": {
"antd": "^4.0.2",
"classnames": "^2.2.6",
"css-element-queries": "^1.2.2",
"d3": "^5.15.0",
"echarts": "^4.5.0",
"echarts-for-react": "^2.0.15-beta.1",
"faker": "^4.1.0",
"i18next": "^19.0.2",
"i18next-browser-languagedetector": "^4.0.1",
"lodash": "^4.17.15",
"rc-resize-observer": "^0.1.3",
"react": "^16.12.0",
"react-ace": "^8.0.0",
"react-color": "^2.17.3",
"react-custom-scrollbars": "^4.2.1",
"react-data-grid": "^6.1.0",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1",
"react-hot-loader": "^4.12.18",
"react-resize-detector": "^4.2.1",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-split": "^2.0.7",
"react-split-pane": "^0.1.89",
"react-window": "^1.8.5",
"resize-observer-polyfill": "^1.5.1",
"store": "^2.0.12",
"typescript": "^3.7.4",
"uuid": "^3.3.3",
"warning": "^4.0.3"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-decorators": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.7",
"@types/classnames": "^2.2.9",
"@types/d3": "^5.7.2",
"@types/echarts": "^4.4.2",
"@types/lodash": "^4.14.149",
"@types/react": "^16.9.17",
"@types/react-color": "^3.0.1",
"@types/react-custom-scrollbars": "^4.0.6",
"@types/react-data-grid": "^4.0.5",
"@types/react-dom": "^16.9.4",
"@types/react-helmet": "^5.0.14",
"@types/react-resize-detector": "^4.2.0",
"@types/react-router": "^5.1.4",
"@types/react-router-dom": "^5.1.3",
"@types/react-window": "^1.8.1",
"@types/uuid": "^3.4.6",
"@types/warning": "^3.0.0",
"@types/webpack-env": "^1.14.1",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-dynamic-import-webpack": "^1.1.0",
"babel-plugin-import": "^1.13.0",
"css-loader": "^3.4.0",
"del": "^5.1.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"fs-extra": "^8.1.0",
"html-webpack-plugin": "^3.2.0",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"style-loader": "^1.1.2",
"terser-webpack-plugin": "^2.3.1",
"tslint": "^5.20.1",
"tslint-react": "^4.1.0",
"url-loader": "^3.0.0",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1",
"webpack-merge": "^4.2.2",
"workbox-webpack-plugin": "^4.3.1"
}
}