-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
52 lines (52 loc) · 1.57 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
{
"name": "quasar-clean-typescript",
"version": "3.1.0",
"description": "A Vue.js starter project using Quasar Framework, Typescript, Pinia store and few other goodies.",
"productName": "Quasar - Clean Typescript Template",
"author": "Beniamin (Xkonti) Dudek <[email protected]>",
"private": true,
"scripts": {
"ci": "yarn install --immutable --immutable-cache --check-cache",
"build": "quasar build",
"dev": "quasar dev",
"lint": "eslint --ext .js,.ts,.vue ./",
"test": "echo \"No test specified\" && exit 0"
},
"dependencies": {
"@quasar/extras": "^1.14.0",
"@vueuse/core": "^8.6.0",
"axios": "^0.27.2",
"axios-service-base-ts": "^0.3.0",
"lodash": "^4.17.21",
"neverthrow": "^6.0.0",
"pinia": "^2.0.14",
"quasar": "^2.7.1",
"uuid": "^8.3.2",
"vue": "^3.2.36",
"vue-i18n": "^9.1.10",
"vue-router": "^4.0.0",
"vue-smart-routes": "^0.1.0"
},
"devDependencies": {
"@intlify/vite-plugin-vue-i18n": "^3.4.0",
"@quasar/app-vite": "^1.0.1",
"@types/lodash": "^4.14.182",
"@types/node": "^12.20.54",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"autoprefixer": "^10.4.7",
"eslint": "^8.17.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^14.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^8.7.1",
"typescript": "^4.7.3"
},
"engines": {
"node": "^18 || ^16 || ^14.19",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
}
}