-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.16 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
{
"name": "expenses-client",
"version": "0.0.1",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"codecov": "codecov",
"prettier": "prettier",
"test": "jest",
"cypress": "cypress open --e2e"
},
"dependencies": {
"axios": "^0.25.0",
"image-blob-reduce": "^4.1.0",
"vue": "^3.4.26",
"vue-i18n": "^9.13.1",
"vue-router": "^4.3.2",
"vue-toastification": "^2.0.0-rc.5"
},
"devDependencies": {
"@namelivia/vue-components": "^1.6.3",
"@namelivia/vue-currentuser": "^0.0.4",
"@vitejs/plugin-vue": "^2.3.4",
"@vue/compiler-sfc": "^3.4.26",
"autoprefixer": "^10.4.19",
"codecov": "^3.8.3",
"cypress": "^13.8.1",
"eslint": "^9.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.25.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"pug": "^3.0.2",
"pug-plain-loader": "^1.1.0",
"tailwindcss": "^3.4.3",
"vite": "^2.9.14"
},
"lint-staged": {
"*.(js|vue)": [
"npm run prettier -- --write"
]
}
}