contract-java-example/front/vite/package.json

30 lines
657 B
JSON
Raw Permalink Normal View History

2023-03-18 13:57:34 +00:00
{
"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"
}
}
}