mirror of
https://gitee.com/BDWare/contract-java-example.git
synced 2025-01-10 18:04:09 +00:00
30 lines
657 B
JSON
30 lines
657 B
JSON
|
{
|
||
|
"name": "example-front",
|
||
|
"version": "0.0.1",
|
||
|
"scripts": {
|
||
|
"dev": "vite --host",
|
||
|
"build": "vite build",
|
||
|
"prod": " vue-tsc --noEmit &&vite build",
|
||
|
"serve": "vite preview",
|
||
|
"lint": "eslint --ext .vue,.js,.ts ./",
|
||
|
"prepare": "cd ../../ && husky install front/vite/.husky"
|
||
|
},
|
||
|
"lint-staged": {
|
||
|
"*.{vue,js,ts}": "eslint --fix"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"@bdware/bdcontract-sdk": "^0.4.0-beta",
|
||
|
"husky": "^6.0.0",
|
||
|
"vite": "^3.0.0",
|
||
|
"@vitejs/plugin-vue": "3.2.0"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"husky": "^6.0.0"
|
||
|
},
|
||
|
"config": {
|
||
|
"commitizen": {
|
||
|
"path": "./node_modules/cz-customizable"
|
||
|
}
|
||
|
}
|
||
|
}
|