chatgpt-web/package.json

56 lines
1.4 KiB
JSON
Raw Normal View History

2023-02-08 22:21:33 -05:00
{
2023-02-10 19:32:59 -05:00
"name": "chatgpt-web",
2023-02-13 03:30:12 -05:00
"version": "2.0.0",
2023-02-10 19:32:59 -05:00
"private": false,
2023-02-13 19:45:07 -05:00
"description": "ChatGPT Web",
"author": "ChenZhaoYu <chenzhaoyu1994@gmail.com>",
2023-02-10 19:32:59 -05:00
"keywords": [
2023-02-13 19:45:07 -05:00
"chatgpt-web",
2023-02-10 19:32:59 -05:00
"chatgpt",
"chatbot",
"vue"
],
"scripts": {
"dev": "vite",
2023-02-12 22:08:11 -05:00
"build": "run-p type-check build-only",
2023-02-10 19:32:59 -05:00
"preview": "vite preview",
2023-02-12 22:06:07 -05:00
"build-only": "vite build",
2023-02-10 19:32:59 -05:00
"type-check": "vue-tsc --noEmit",
2023-02-12 22:03:10 -05:00
"lint:fix": "eslint . --fix",
2023-02-12 23:38:44 -05:00
"bootstrap": "pnpm install && pnpm run common:prepare",
2023-02-12 22:12:28 -05:00
"common:cleanup": "rimraf node_modules && rimraf pnpm-lock.yaml",
"common:prepare": "husky install"
2023-02-10 19:32:59 -05:00
},
"dependencies": {
"naive-ui": "^2.34.3",
2023-02-12 23:38:44 -05:00
"vue": "^3.2.47",
"vue-router": "^4.1.6"
2023-02-10 19:32:59 -05:00
},
"devDependencies": {
"@antfu/eslint-config": "^0.35.2",
2023-02-13 08:02:25 -05:00
"@commitlint/cli": "^17.4.3",
"@commitlint/config-conventional": "^17.4.3",
2023-02-10 19:32:59 -05:00
"@iconify/vue": "^4.1.0",
"@types/node": "^18.13.0",
"@vitejs/plugin-vue": "^4.0.0",
"autoprefixer": "^10.4.13",
"axios": "^1.3.2",
"eslint": "^8.34.0",
2023-02-12 22:03:10 -05:00
"husky": "^8.0.3",
"lint-staged": "^13.1.1",
2023-02-10 19:32:59 -05:00
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
2023-02-12 22:03:10 -05:00
"rimraf": "^4.1.2",
2023-02-10 19:32:59 -05:00
"tailwindcss": "^3.2.6",
"typescript": "~4.9.5",
"vite": "^4.1.1",
"vue-tsc": "^1.0.24"
2023-02-12 22:03:10 -05:00
},
"lint-staged": {
"*.{js,ts,jsx,tsx,vue}": [
2023-02-13 07:55:26 -05:00
"pnpm lint:fix",
"pnpm type-check"
2023-02-12 22:03:10 -05:00
]
2023-02-10 19:32:59 -05:00
}
2023-02-08 22:21:33 -05:00
}