-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.11 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
{
"name": "quasar-pwa",
"version": "0.0.1",
"description": "Inventory Management Software Development PWA bult using the Quasar Framework",
"productName": "Fetch App",
"author": "zegle <zegle@example.com>",
"private": true,
"scripts": {
"lint": "eslint --ext .js,.vue ./",
"lint:fix": "eslint --ext .js,.vue ./ --fix",
"lint-staged-commit": "eslint --quiet --ext .js,.vue --fix $(git diff --name-only --diff-filter=d HEAD | xargs)",
"dev:local": "ENVIRONMENT=local quasar dev",
"dev:local-pwa": "ENVIRONMENT=local quasar dev -m pwa",
"dev:development": "ENVIRONMENT=dev quasar dev",
"dev:production": "ENVIRONMENT=prod quasar dev",
"build": "ENVIRONMENT=production quasar build -m pwa",
"build:development": "ENVIRONMENT=dev quasar build -m pwa",
"build:local": "ENVIRONMENT=local quasar build -m pwa --debug",
"test:unit": "vitest",
"test:unit:ci": "vitest run",
"generate-cert": "rm -rf .cert && mkdir -p .cert && mkcert -key-file ./.cert/key.pem -cert-file ./.cert/cert.pem 'localhost'"
},
"dependencies": {
"@quasar/extras": "^1.16.12",
"axios": "^1.7.7",
"dotenv": "^16.4.5",
"jwt-decode": "^4.0.0",
"moment": "^2.30.1",
"node": "^22.10.0",
"npm": "^9.8.1",
"pinia": "^2.2.4",
"quasar": "^2.17.1",
"vue": "^3.5.12",
"vue-json-excel3": "^1.0.29",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@pinia/testing": "^0.1.6",
"@quasar/app-vite": "^1.10.2",
"@quasar/quasar-app-extension-testing": "^2.1.1",
"@quasar/quasar-app-extension-testing-unit-vitest": "^1.1.0",
"@vue/test-utils": "^2.4.6",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-plugin-vue": "^9.29.1",
"fake-indexeddb": "^6.0.0",
"postcss": "^8.4.47",
"vitest": "^2.1.3",
"workbox-build": "^7.0.0",
"workbox-cacheable-response": "^7.1.0",
"workbox-core": "^7.1.0",
"workbox-expiration": "^7.1.0",
"workbox-precaching": "^7.1.0",
"workbox-routing": "^7.1.0",
"workbox-strategies": "^7.1.0"
},
"engines": {
"node": "^22|| ^20 || ^16",
"npm": ">= 9.8.1",
"yarn": ">= 1.22.0"
}
}