-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.7 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
107
108
{
"name": "vite-project",
"version": "0.0.0",
"license": "UNLICENSED",
"scripts": {
"dev": "vite",
"build": "vite build && vue-tsc --noEmit",
"build:test": "cross-env NODE_ENV=test vite build --outDir dist-test",
"preview": "vite preview",
"preview:test": "vite preview --outDir dist-test",
"types": "vue-tsc --noEmit",
"lint": "eslint --ext .js,.ts,.vue src",
"lint:fix": "eslint --fix --ext .js,.ts,.vue src",
"stylelint": "stylelint \"src/**/*.scss\"",
"stylelint:fix": "stylelint \"src/**/*.{scss,vue}\" --fix",
"prepare": "node .husky/install.mjs",
"test": "vitest",
"test:ci": "vitest --run",
"cypress:open": "cypress open --config-file cypress/configs/index.ts",
"cypress:open:update-snapshots": "npm run cypress:open -- -e type=base",
"cypress:open:preview": "cypress open --config-file cypress/configs/preview.ts",
"cypress:open:mobile:preview": "cypress open --config-file cypress/configs/mobile.preview.ts",
"cypress:open:mobile": "cypress open --config-file cypress/configs/mobile.ts",
"cypress:run": "cypress run --config-file cypress/configs/index.ts",
"cypress:run:preview": "cypress run --config-file cypress/configs/preview.ts",
"cypress:run:mobile": "cypress run --config-file cypress/configs/mobile.ts",
"cypress:run:mobile:preview": "cypress run --config-file cypress/configs/mobile.preview.ts",
"cypress:run:update-snapshots": "npm run cypress:run:update-snapshots:desktop && npm run cypress:run:update-snapshots:mobile",
"cypress:run:update-snapshots:desktop": "npm run cypress:run -- -e type=base",
"cypress:run:update-snapshots:mobile": "npm run cypress:run:mobile -- -e type=base"
},
"lint-staged": {
"src/**/*.{scss,vue}": [
"stylelint --fix",
"git add"
],
"src/*.{js,ts,vue}": [
"eslint --fix",
"git add"
],
"cypress/*.{js,ts}": [
"eslint --fix",
"git add"
],
"tests/*.{js,ts}": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"@vicons/ionicons5": "^0.12.0",
"@vueuse/core": "^10.7.2",
"dayjs": "^1.10.7",
"firebase": "^10.8.0",
"firebase-tools": "^13.2.1",
"pinia": "^2.0.6",
"vue": "^3.4.15",
"vue-i18n": "^9.2.0-beta.23",
"vue-router": "^4.0.12",
"vue3-virtual-scroll-list": "^0.2.1"
},
"devDependencies": {
"@cypress-audit/lighthouse": "^1.4.2",
"@pinia/testing": "^0.1.3",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"@vitejs/plugin-vue": "^5.0.3",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.4.4",
"autoprefixer": "^10.4.0",
"cypress": "^13.6.4",
"cypress-visual-regression": "^5.0.0",
"dotenv": "^16.4.4",
"eslint": "8.56.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-import-newlines": "^1.3.0",
"eslint-plugin-vue": "^9.8.0",
"fake-indexeddb": "^5.0.2",
"happy-dom": "^13.3.8",
"husky": "^9.0.10",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.1",
"lodash.debounce": "^4.0.8",
"naive-ui": "^2.38.1",
"postcss": "^8.4.5",
"postcss-html": "^1.3.0",
"sass": "^1.45.0",
"stylelint": "^14.2.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-recommended-scss": "^8.0.0",
"stylelint-order": "^6.0.1",
"stylelint-scss": "^4.1.0",
"typescript": "~5.3.3",
"unplugin-auto-import": "^0.17.5",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.0.12",
"vite-plugin-pwa": "^0.19.0",
"vitest": "^1.2.2",
"vue-tsc": "^1.0.24",
"workbox-precaching": "^7.0.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.9.5"
},
"engines": {
"node": ">=18.0.0"
}
}