Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

package.json 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "dc-next",
  3. "version": "2.0.0",
  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-next.git",
  6. "homepage": "https://www.dvgis.cn",
  7. "keywords": [
  8. "3D",
  9. "webgl",
  10. "map",
  11. "globe",
  12. "cesium",
  13. "heatmap"
  14. ],
  15. "author": "Caven Chen <cavencj@gmail.com>",
  16. "license": "Apache 2.0",
  17. "main": "index.js",
  18. "scripts": {
  19. "test": "echo \"Error: no test specified\" && exit 1",
  20. "gen:version": "node scripts/gen-version.js",
  21. "dev": "yarn run dev:base && yarn run dev:core",
  22. "build": "yarn run build:base && yarn run build:core",
  23. "dev:base": "yarn run clean:base && webpack --config build/webpack.base.conf --mode development",
  24. "build:base": "yarn run clean:base && webpack --config build/webpack.base.conf --mode production --env.production",
  25. "dev:core": "yarn run clean:core && webpack --config build/webpack.core.conf --mode development",
  26. "build:core": "yarn run clean:core && webpack --config build/webpack.core.conf --mode production --env.production",
  27. "clean": "yarn run clean:base && yarn run clean:core",
  28. "clean:base": "rimraf packages/base/dist",
  29. "clean:core": "rimraf packages/core/dist"
  30. },
  31. "devDependencies": {
  32. "@babel/core": "^7.4.0",
  33. "@babel/plugin-proposal-class-properties": "^7.12.1",
  34. "@babel/plugin-transform-runtime": "^7.4.0",
  35. "@babel/polyfill": "^7.4.0",
  36. "@babel/preset-env": "^7.4.2",
  37. "babel-eslint": "^10.0.1",
  38. "babel-loader": "^8.0.5",
  39. "cesium": "^1.79.1",
  40. "chalk": "^4.1.0",
  41. "copy-webpack-plugin": "^5.0.2",
  42. "css-loader": "^2.1.1",
  43. "eslint": "^5.15.3",
  44. "eslint-config-prettier": "^4.1.0",
  45. "eslint-plugin-import": "^2.1.0",
  46. "eslint-plugin-node": "^8.0.1",
  47. "eslint-plugin-prettier": "^3.0.1",
  48. "eslint-plugin-promise": "^4.0.1",
  49. "file-loader": "^3.0.1",
  50. "fs-extra": "^9.1.0",
  51. "heatmap.js": "^2.0.5",
  52. "mini-css-extract-plugin": "^0.6.0",
  53. "node-sass": "^5.0.0",
  54. "optimize-css-assets-webpack-plugin": "^5.0.3",
  55. "prettier": "^1.16.4",
  56. "rimraf": "^2.6.3",
  57. "sass-loader": "^10.1.0",
  58. "strip-pragma-loader": "^1.0.0",
  59. "style-loader": "^0.23.1",
  60. "url-loader": "^1.1.2",
  61. "webpack": "^4.29.6",
  62. "webpack-cli": "^3.3.0",
  63. "webpack-glsl-loader": "^1.0.1",
  64. "webpack-obfuscator": "^1.8.0"
  65. }
  66. }