-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 2.09 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
56
57
58
59
60
61
62
63
64
{
"name": "starter",
"productName": "ExampleName",
"description": "ExampleDescription.",
"version": "1.0.0",
"homepage": "https://github.com/lakesidernd/quasar-v2-starter#readme",
"bugs": {
"url": "https://github.com/lakesidernd/quasar-v2-starter/issuess"
},
"author": {
"name": "Milos Paunovic",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"prepare:all": "npm i && node generator.js",
"postprepare:all": "npm uninstall chalk inquirer replace-in-file",
"lint": "eslint --ext .js,.ts,.vue ./ --fix",
"dev:local": "cross-env ENVIRONMENT=local quasar dev -m pwa",
"prebuild:local": "npm run lint",
"build:local": "cross-env ENVIRONMENT=local npm quasar build -m pwa --debug",
"dev:development": "cross-env ENVIRONMENT=development quasar dev -m pwa",
"prebuild:development": "npm run lint",
"build:development": "cross-env ENVIRONMENT=development npm quasar build -m pwa --debug",
"dev:production": "cross-env ENVIRONMENT=production quasar dev -m pwa",
"prebuild:production": "npm run lint",
"build:production": "cross-env ENVIRONMENT=production npm quasar build -m pwa"
},
"dependencies": {
"@quasar/extras": "^1.15.4",
"@sentry/tracing": "^7.14.1",
"@sentry/vue": "^7.14.1",
"axios": "^1.0.0",
"pinia": "^2.0.22",
"quasar": "^2.9.2",
"vue": "^3.2.40",
"vue-router": "^4.1.5"
},
"devDependencies": {
"@quasar/app-vite": "^1.1.2",
"autoprefixer": "^10.4.11",
"chalk": "^4.1.2",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"eslint": "^8.24.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-vue": "^9.6.0",
"inquirer": "^8.2.4",
"replace-in-file": "^6.3.5",
"workbox-build": "^6.5.4",
"workbox-cacheable-response": "^6.5.4",
"workbox-core": "^6.5.4",
"workbox-expiration": "^6.5.4",
"workbox-precaching": "^6.5.4",
"workbox-routing": "^6.5.4",
"workbox-strategies": "^6.5.4"
},
"engines": {
"node": "^18 || ^16 || ^14.19",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
}
}