sunmao-ui/packages/editor/package.json

59 lines
1.3 KiB
JSON
Raw Normal View History

2021-09-22 15:34:52 +08:00
{
"name": "editor",
"version": "0.0.0",
"description": "meta-ui editor",
"author": "Bowen Tan <bowen.tan@smartx.com>",
"homepage": "https://github.com/webzard-io/meta-ui#readme",
"license": "MIT",
"main": "src/main.tsx",
"scripts": {
"dev": "vite",
"test": "jest"
},
"publishConfig": {
"registry": "http://192.168.26.29:7001"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webzard-io/meta-ui.git"
},
"bugs": {
"url": "https://github.com/webzard-io/meta-ui/issues"
},
"dependencies": {
2021-09-30 11:38:50 +08:00
"@chakra-ui/icons": "^1.0.15",
2021-09-23 11:17:36 +08:00
"@chakra-ui/react": "^1.6.5",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@meta-ui/core": "^0.1.0",
"@meta-ui/runtime": "^0.0.0",
2021-09-27 18:00:34 +08:00
"@sinclair/typebox": "^0.20.5",
2021-09-23 18:21:20 +08:00
"framer-motion": "^4",
2021-09-27 18:00:34 +08:00
"immer": "^9.0.6",
2021-09-22 15:34:52 +08:00
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
2021-09-23 18:21:20 +08:00
"@babel/preset-react": "^7.14.5",
"@vitejs/plugin-react": "^1.0.1",
2021-09-22 15:34:52 +08:00
"@vitejs/plugin-react-refresh": "^1.3.6",
"babel-jest": "^27.2.1",
2021-09-23 18:21:20 +08:00
"jest": "^27.2.1",
"typescript": "^4.4.3",
"vite": "^2.5.10"
2021-09-22 15:34:52 +08:00
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,html}": [
"prettier --write",
"eslint --fix",
"git add"
]
}
}