-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.2 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
{
"name": "stylegan-vue",
"version": "1.0.0",
"description": "StyleGAN client SPA for the StyleGAN FastAPI",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"serve": "vite preview --port 8080",
"check": "vue-tsc --noEmit && eslint --ext .ts,.tsx,.vue . && prettier -cu .",
"lint": "eslint --ext .ts,.tsx,.vue .",
"fix": "eslint --fix --ext .ts,.tsx,.vue .",
"format": "prettier -cwu ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/curegit/stylegan-vue.git"
},
"author": "curegit (https://github.com/curegit)",
"license": "MIT",
"bugs": {
"url": "https://github.com/curegit/stylegan-vue/issues"
},
"homepage": "https://github.com/curegit/stylegan-vue",
"dependencies": {
"vue": "^3.5.0",
"openapi-fetch": "^0.12.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.1.0",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.1.0",
"eslint": "^9.14.0",
"eslint-plugin-vue": "^9.30.0",
"openapi-typescript": "^7.4.0",
"prettier": "^3.3.0",
"typescript": "^5.6.0",
"vite": "^5.4.0",
"vue-tsc": "^2.1.0"
}
}