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.

package.json 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. {
  2. "name": "dc-sdk",
  3. "version": "2.16.2",
  4. "description": "The SDK is based on Cesium for secondary development of 2, 3D all-in-one WebGis application framework, the framework optimizes the use of Cesium and add some additional features, designed for developers to quickly build WebGis applications.",
  5. "repository": "https://github.com/dvgis/dc-sdk.git",
  6. "homepage": "https://www.dvgis.cn",
  7. "keywords": [
  8. "3D",
  9. "webGL",
  10. "map",
  11. "globe",
  12. "cesium",
  13. "heatmap",
  14. "turf",
  15. "mapv",
  16. "s3m"
  17. ],
  18. "author": "Caven Chen <cavencj@gmail.com>",
  19. "license": "Apache 2.0",
  20. "main": "index.js",
  21. "scripts": {
  22. "test": "echo \"Error: no test specified\" && exit 1",
  23. "gen:version": "node scripts/gen-version.js",
  24. "copy": "node scripts/build.js",
  25. "dev": "yarn run dev:base && yarn run dev:core && yarn run dev:chart && yarn run dev:mapv && yarn run dev:s3m",
  26. "build": "yarn run build:base && yarn run build:core && yarn run build:chart && yarn run build:mapv && yarn run build:s3m",
  27. "dev:sdk": "yarn run dev && yarn run copy",
  28. "build:sdk": "yarn run build && yarn run copy",
  29. "release": "node scripts/release.js",
  30. "dev:base": "yarn run clean:base && webpack --config build/webpack.base.conf --mode development",
  31. "build:base": "yarn run clean:base && webpack --config build/webpack.base.conf --mode production --env.production",
  32. "dev:core": "yarn run clean:core && webpack --config build/webpack.core.conf --mode development",
  33. "build:core": "yarn run clean:core && webpack --config build/webpack.core.conf --mode production --env.production",
  34. "dev:chart": "yarn run clean:chart && webpack --config build/webpack.chart.conf --mode development",
  35. "build:chart": "yarn run clean:chart && webpack --config build/webpack.chart.conf --mode production --env.production",
  36. "dev:mapv": "yarn run clean:mapv && webpack --config build/webpack.mapv.conf --mode development",
  37. "build:mapv": "yarn run clean:mapv && webpack --config build/webpack.mapv.conf --mode production --env.production",
  38. "dev:s3m": "yarn run clean:s3m && webpack --config build/webpack.s3m.conf --mode development",
  39. "build:s3m": "yarn run clean:s3m && webpack --config build/webpack.s3m.conf --mode production --env.production",
  40. "clean": "yarn run clean:base && yarn run clean:core && yarn run clean:chart && yarn run clean:mapv && yarn run clean:s3m && yarn run clean:sdk",
  41. "clean:base": "rimraf packages/base/dist",
  42. "clean:core": "rimraf packages/core/dist",
  43. "clean:chart": "rimraf packages/chart/dist",
  44. "clean:mapv": "rimraf packages/mapv/dist",
  45. "clean:s3m": "rimraf packages/s3m/dist",
  46. "clean:sdk": "rimraf packages/sdk/dist"
  47. },
  48. "devDependencies": {
  49. "@babel/core": "^7.4.0",
  50. "@babel/plugin-proposal-class-properties": "^7.12.1",
  51. "@babel/plugin-transform-runtime": "^7.4.0",
  52. "@babel/polyfill": "^7.4.0",
  53. "@babel/preset-env": "^7.4.2",
  54. "@turf/turf": "^6.3.0",
  55. "babel-eslint": "^10.0.1",
  56. "babel-loader": "^8.0.5",
  57. "cesium": "1.96.0",
  58. "chalk": "^4.1.0",
  59. "copy-webpack-plugin": "^5.0.2",
  60. "css-loader": "^2.1.1",
  61. "eslint": "^5.15.3",
  62. "eslint-config-prettier": "^4.1.0",
  63. "eslint-plugin-import": "^2.1.0",
  64. "eslint-plugin-node": "^8.0.1",
  65. "eslint-plugin-prettier": "^3.0.1",
  66. "eslint-plugin-promise": "^4.0.1",
  67. "file-loader": "^3.0.1",
  68. "fs-extra": "^9.1.0",
  69. "mini-css-extract-plugin": "^0.6.0",
  70. "optimize-css-assets-webpack-plugin": "^5.0.3",
  71. "prettier": "^1.16.4",
  72. "rimraf": "^2.6.3",
  73. "sass": "^1.49.9",
  74. "sass-loader": "^10.1.0",
  75. "shelljs": "^0.8.4",
  76. "strip-pragma-loader": "^1.0.0",
  77. "style-loader": "^0.23.1",
  78. "url-loader": "^1.1.2",
  79. "webpack": "^4.29.6",
  80. "webpack-cli": "^3.3.0",
  81. "webpack-glsl-loader": "^1.0.1",
  82. "webpack-obfuscator": "^1.8.0"
  83. }
  84. }