forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 2.74 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 2.74 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@quasar/app-vite",
"version": "1.0.0-beta.5",
"description": "Quasar Framework App CLI with Vite",
"bin": {
"quasar": "./bin/quasar"
},
"typings": "types/index.d.ts",
"files": [
"assets",
"bin",
"lib",
"templates",
"types",
"tsconfig-preset.json"
],
"keywords": [
"quasar",
"vue",
"vuejs",
"vite",
"cli",
"web",
"spa",
"pwa",
"electron",
"cordova"
],
"author": {
"name": "Razvan Stoenescu",
"email": "razvan.stoenescu@gmail.com",
"url": "https://github.com/quasarframework"
},
"repository": {
"type": "git",
"url": "https://github.com/quasarframework/quasar"
},
"license": "MIT",
"bugs": "https://github.com/quasarframework/quasar/issues",
"homepage": "https://quasar.dev",
"funding": {
"type": "github",
"url": "https://donate.quasar.dev"
},
"scripts": {
"lint": "eslint --ext .js ./ --fix --report-unused-disable-directives"
},
"dependencies": {
"@quasar/fastclick": "1.1.5",
"@quasar/vite-plugin": "^1.0.6",
"@rollup/pluginutils": "^4.1.2",
"@types/cordova": "0.0.34",
"@types/express": "^4.17.13",
"@vitejs/plugin-vue": "^2.2.0",
"archiver": "5.3.0",
"chokidar": "3.5.3",
"ci-info": "3.3.0",
"compression": "^1.7.4",
"cross-spawn": "7.0.3",
"dot-prop": "6.0.1",
"elementtree": "0.1.7",
"esbuild": "0.14.24",
"express": "^4.17.3",
"fast-glob": "3.2.11",
"fs-extra": "10.0.1",
"html-minifier": "4.0.0",
"inquirer": "8.2.0",
"isbinaryfile": "4.0.8",
"kolorist": "1.5.1",
"lodash.debounce": "4.0.8",
"lodash.template": "4.5.0",
"minimist": "1.2.5",
"open": "8.4.0",
"ouch": "2.0.0",
"postcss": "^8.4.4",
"register-service-worker": "1.7.2",
"rollup-plugin-visualizer": "^5.5.4",
"sass": "1.32.12",
"semver": "7.3.5",
"serialize-javascript": "^6.0.0",
"table": "6.8.0",
"vite": "2.8.6",
"webpack-merge": "5.8.0"
},
"devDependencies": {
"electron-builder": "22.14.13",
"electron-packager": "^15.3.0",
"eslint": "^8.11.0",
"eslint-plugin-node": "^11.1.0",
"pinia": "^2.0.0",
"quasar": "^2.0.4",
"ts-essentials": "^9.1.2",
"vue": "^3.0.0",
"vue-router": "^4.0.0",
"vuex": "^4.0.0"
},
"peerDependencies": {
"electron-builder": "^22.0.0",
"electron-packager": "^15.0.0",
"vue": "^3.2.29",
"vue-router": "^4.0.12"
},
"peerDependenciesMeta": {
"electron-builder": {
"optional": true
},
"electron-packager": {
"optional": true
}
},
"engines": {
"node": "^18 || ^16 || ^14.19",
"npm": ">= 6.14.12",
"yarn": ">= 1.17.3"
},
"volta": {
"node": "lts"
},
"publishConfig": {
"access": "public"
}
}