-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
63 lines (63 loc) · 1.97 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
{
"name": "zd-data-app-03",
"version": "1.0.0",
"description": "Zoomdata sample data app",
"main": "src/index.js",
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:dev": "webpack-dev-server --inline --content-base dist/ --history-api-fallback --port 8090",
"start:prod": "npm run build && node server.bundle.js",
"build:client": "webpack --watch",
"build:server": "webpack --config webpack.server.config.js --port 8090",
"build": "npm run build:client && npm run build:server",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zoomdata/zd-data-app-03.git"
},
"author": "Eduardo Pina <[email protected]>",
"license": "ISC",
"dependencies": {
"ag-grid": "^4.0.5",
"ag-grid-react": "^4.0.0",
"babel-polyfill": "^6.7.2",
"compression": "^1.6.1",
"echarts": "^3.1.7",
"if-env": "^1.0.0",
"jquery": "^3.3.1",
"lodash": "^4.6.1",
"moment": "^2.12.0",
"numeral": "^1.5.3",
"oauth2-implicit": "^0.7.0",
"react": "^0.14.7",
"react-bootstrap": "^0.28.3",
"react-dimensions": "^1.0.2",
"react-dom": "^0.14.7",
"react-highcharts": "^8.0.3",
"react-redux": "^4.4.1",
"redux": "^3.3.1",
"redux-responsive": "^1.1.0",
"redux-saga": "^0.9.4",
"zoomdata-client": "4.9.0-7.20190923224146.20325ad7.release"
},
"devDependencies": {
"babel-core": "^6.7.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"css-loader": "^0.23.1",
"file-loader": "^0.8.5",
"gh-pages": "^1.1.0",
"http-server": "^0.8.5",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.12.13",
"webpack-dev-server": "^1.14.1"
},
"bugs": {
"url": "https://github.com/Zoomdata/zd-data-app-03/issues"
},
"homepage": "https://github.com/Zoomdata/zd-data-app-03#readme"
}