-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
106 lines (106 loc) · 3.26 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
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
{
"name": "celebrity-fanalyzer",
"version": "1.6",
"description": "Celebrities Over Analyzed",
"productName": "Celebrity Fanalyzer",
"private": true,
"scripts": {
"build": "quasar build --mode pwa",
"dev": "quasar dev --mode pwa",
"dev:e2e": "cross-env VITE_MODE=E2E quasar dev --mode pwa",
"format": "prettier --write \"**/*.{js,vue,css,html,md,json}\" --ignore-path .gitignore",
"lint": "eslint --ext .js,.vue ./",
"lint:fix": "eslint --ext .js,.vue ./src --fix --color",
"test": "vitest",
"vitest": "vitest -u",
"vitest:coverage": "vitest run --coverage",
"coverage": "cd coverage/src/stores && open index.html",
"cy:run": "cypress run",
"cy:open": "cypress open",
"cy:test": "start-server-and-test dev http-get://localhost:9200 cy:run",
"prepare": "husky",
"lhci:mobile": "lighthouse-ci --url=$1 --preset=mobile",
"lhci:desktop": "lighthouse-ci --url=$1 --preset=desktop"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.(vue|js)": [
"npm run lint:fix"
],
"*.{json,js,ts,jsx,tsx,html}": [
"npm run format"
]
},
"dependencies": {
"@originjs/vite-plugin-commonjs": "^1.0.3",
"@quasar/extras": "^1.16.12",
"@tanstack/query-persist-client-core": "^5.51.21",
"@tanstack/query-sync-storage-persister": "^5.51.21",
"@tanstack/vue-query": "^5.51.21",
"@tanstack/vue-query-devtools": "^5.51.21",
"@web3modal/ethers5": "^4.2.3",
"big-integer": "^1.6.52",
"dotenv": "^16.3.1",
"echarts": "^5.4.3",
"eslint-plugin-prettier": "^5.2.1",
"ethers": "^5.7.2",
"firebase": "^10.13.1",
"idb": "^8.0.0",
"idb-keyval": "^6.2.1",
"leaflet": "^1.9.4",
"mock_layer8_module": "^1.0.4",
"pica": "^9.0.1",
"pinia": "^2.2.1",
"pinia-plugin-persistedstate": "^3.2.0",
"quasar": "^2.16.4",
"sha1": "^1.1.1",
"vue": "^3.5.12",
"vue-echarts": "^7.0.2",
"vue-router": "^4.4.3"
},
"devDependencies": {
"@cypress/code-coverage": "^3.13.5",
"@lhci/cli": "^0.14.0",
"@pinia/testing": "^0.1.3",
"@quasar/app-vite": "^1.6.2",
"@quasar/quasar-app-extension-testing-e2e-cypress": "^5.1.1",
"@quasar/quasar-app-extension-testing-unit-vitest": "^0.3.1",
"@vitest/coverage-istanbul": "^0.31.4",
"@vue/test-utils": "^2.4.1",
"autoprefixer": "^10.4.16",
"c8": "^7.14.0",
"cypress": "^13.11.0",
"cypress-wait-until": "^1.7.2",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-vue": "^9.17.0",
"husky": "^9.1.6",
"jsdom": "^22.1.0",
"lint-staged": "^15.2.10",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"rollup-plugin-visualizer": "^5.12.0",
"start-server-and-test": "^2.0.1",
"vite-plugin-compression2": "^1.1.1",
"vite-plugin-istanbul": "^5.0.0",
"vitest": "^0.31.4",
"vue-router-mock": "^0.2.0",
"workbox-build": "^6.6.0",
"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": "^20 || ^18 || ^16",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
}
}