generated from willCode2Surf/vue3-vite-express-js-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.55 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "chatgpt-plugin-express-vue3-vite-starter",
"description": "Weather ChatGPT Plugin starter with Dockerized Vue3 with Vite built using express and other various technologies for a quick boilerplate development stack",
"version": "1.0.0",
"type": "module",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "vite --mode development",
"build": "vite build --mode development",
"preview": "vite preview",
"start": "vite build --mode development && node app",
"prepare": "husky install"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@vitejs/plugin-vue": "^4.2.3",
"axios": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^16.1.4",
"express": "^4.18.2",
"vue": "^3.3.4",
"vue-router": "^4.2.2",
"ws": "^8.13.0"
},
"devDependencies": {
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "2.8.8",
"vite": "^4.3.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/willCode2Surf/chatgpt-plugin-express-vue3-vite-starter.git"
},
"keywords": [
"ChatGPT",
"ChatGPT Plugin",
"ChatGPT API",
"docker",
"vue",
"vue3",
"express",
"javascript",
"boilerplate"
],
"author": "@WillCode2Surf (dustin.w.brown@gmail.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/willCode2Surf/chatgpt-plugin-express-vue3-vite-starter/issues"
},
"homepage": "https://github.com/willCode2Surf/chatgpt-plugin-express-vue3-vite-starter#readme"
}