基于高德地图JS api开发的geojson编辑器.
http://geojson.finevis.cc/
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.
57 lines
1.3 KiB
57 lines
1.3 KiB
{ |
|
"name": "fine-geojson-editor", |
|
"version": "0.0.1", |
|
"scripts": { |
|
"dev": "vite", |
|
"build": "tsc && vite build", |
|
"preview": "vite preview", |
|
"lint": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,less,md}\"" |
|
}, |
|
"dependencies": { |
|
"@finevis/emitter": "^1.0.4", |
|
"antd": "^4.16.13", |
|
"classnames": "^2.3.1", |
|
"immer": "^9.0.7", |
|
"less": "^4.1.2", |
|
"lodash": "^4.17.21", |
|
"react": "^17.0.2", |
|
"react-dom": "^17.0.2", |
|
"react-redux": "^7.2.6", |
|
"redux": "^4.1.2" |
|
}, |
|
"devDependencies": { |
|
"@amap/amap-jsapi-types": "^0.0.8", |
|
"@types/geojson": "^7946.0.8", |
|
"@types/react": "^17.0.33", |
|
"@types/react-dom": "^17.0.10", |
|
"@vitejs/plugin-react": "^1.0.7", |
|
"eslint": "^8.7.0", |
|
"eslint-config-prettier": "^8.3.0", |
|
"eslint-config-react-app": "^7.0.0", |
|
"eslint-plugin-prettier": "^4.0.0", |
|
"husky": "^7.0.4", |
|
"lint-staged": "^12.2.2", |
|
"ncp": "^2.0.0", |
|
"prettier": "^2.5.1", |
|
"typescript": "^4.4.4", |
|
"vite": "^2.6.4", |
|
"vitepress": "^0.20.0" |
|
}, |
|
"eslintConfig": { |
|
"extends": [ |
|
"react-app", |
|
"plugin:prettier/recommended" |
|
] |
|
}, |
|
"husky": { |
|
"hooks": { |
|
"pre-commit": "lint-staged" |
|
} |
|
}, |
|
"lint-staged": { |
|
"src/**/*.{js,jsx,ts,tsx,json,less,md}": [ |
|
"prettier --write" |
|
], |
|
"src/**/*.{js, ts}": "eslint" |
|
} |
|
}
|
|
|