You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "@dvgis/dc-sdk",
  3. "version": "1.4.2",
  4. "description": " The SDK is a secondary development based on the open source project Cesium, which optimizes some operations of Cesium and enables developers to quickly develop 3D applications through the framework.",
  5. "main": "index.js",
  6. "repository": "https://github.com/Digital-Visual/dc-sdk.git",
  7. "homepage": "http://dc.dvgis.cn",
  8. "keywords": [
  9. "3D",
  10. "webgl",
  11. "map",
  12. "globe",
  13. "cesium",
  14. "heatmap"
  15. ],
  16. "author": "Caven Chen <cavencj@gmail.com>",
  17. "license": "Apache 2.0",
  18. "scripts": {
  19. "test": "echo \"Error: no test specified\" && exit 1",
  20. "build": "yarn run build:core && yarn run build:plugins && yarn run build:plot && yarn run build:overlay",
  21. "build:core": "yarn run clean:core && webpack --config webpack.conf --mode development",
  22. "build:plugins": "yarn run clean:plugins && webpack --config webpack.plugins.conf --mode development",
  23. "build:plot": "yarn run clean:plot && webpack --config webpack.plot.conf --mode development",
  24. "build:overlay": "yarn run clean:overlay && webpack --config webpack.overlay.conf --mode development",
  25. "publish": "yarn run publish:core && yarn run publish:plugins && yarn run publish:plot && yarn run publish:overlay",
  26. "publish:core": "yarn run clean:core && webpack --config webpack.conf --mode production --env.production",
  27. "publish:plugins": "yarn run clean:plugins && webpack --config webpack.plugins.conf --mode production --env.production",
  28. "publish:plot": "yarn run clean:plot && webpack --config webpack.plot.conf --mode production --env.production",
  29. "publish:overlay": "yarn run clean:overlay && webpack --config webpack.overlay.conf --mode production --env.production",
  30. "clean": "rimraf dist/",
  31. "clean:core": "rimraf dist/dc-sdk/resources dist/dc-sdk/dc.*.js dist/dc-sdk/dc.*.css",
  32. "clean:plugins": "rimraf dist/dc-sdk/plugins",
  33. "clean:plot": "rimraf dist/dc-sdk/plot",
  34. "clean:overlay": "rimraf dist/dc-sdk/overlay"
  35. },
  36. "devDependencies": {
  37. "@babel/core": "^7.4.0",
  38. "@babel/plugin-transform-runtime": "^7.4.0",
  39. "@babel/polyfill": "^7.4.0",
  40. "@babel/preset-env": "^7.4.2",
  41. "@babel/preset-stage-2": "^7.0.0",
  42. "babel-eslint": "^10.0.1",
  43. "babel-loader": "^8.0.5",
  44. "copy-webpack-plugin": "^5.0.2",
  45. "css-loader": "^2.1.1",
  46. "eslint": "^5.15.3",
  47. "eslint-config-prettier": "^4.1.0",
  48. "eslint-plugin-import": "^2.16.0",
  49. "eslint-plugin-node": "^8.0.1",
  50. "eslint-plugin-prettier": "^3.0.1",
  51. "eslint-plugin-promise": "^4.0.1",
  52. "file-loader": "^3.0.1",
  53. "mini-css-extract-plugin": "^0.6.0",
  54. "node-sass": "^4.12.0",
  55. "optimize-css-assets-webpack-plugin": "^5.0.3",
  56. "prettier": "^1.16.4",
  57. "rimraf": "^2.6.3",
  58. "sass-loader": "^7.1.0",
  59. "strip-pragma-loader": "^1.0.0",
  60. "style-loader": "^0.23.1",
  61. "uglifyjs-webpack-plugin": "^2.2.0",
  62. "url-loader": "^1.1.2",
  63. "webpack": "^4.29.6",
  64. "webpack-cli": "^3.3.0",
  65. "webpack-glsl-loader": "^1.0.1"
  66. },
  67. "dependencies": {
  68. "cesium": "^1.69.0",
  69. "heatmap.js": "^2.0.5"
  70. }
  71. }