-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.44 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.44 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
{
"name": "scouting-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"prepare": "husky install"
},
"devDependencies": {
"@babel/eslint-parser": "^7.26.5",
"@nuxt/devtools": "latest",
"@nuxtjs/eslint-module": "^4.1.0",
"@types/pouchdb": "6.4.0",
"@types/sentiment": "^5.0.4",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-vue": "^9.32.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"nuxt": "^3.10.3",
"prettier": "^3.4.2"
},
"dependencies": {
"@nuxt/image": "^1.3.0",
"@nuxt/ui": "^2.13.0",
"@userfront/vue": "0.1.20",
"@vite-pwa/nuxt": "0.10.6",
"@vueuse/core": "12.5.0",
"chart.js": "^4.4.7",
"compressorjs": "1.2.1",
"heic2any": "0.0.4",
"pinia": "^3.0.1",
"pouchdb": "9.0.0",
"pouchdb-authentication": "1.1.3",
"pouchdb-security-helper": "2.1.2",
"sentiment": "^5.0.2",
"vite-plugin-vuetify": "^2.0.1",
"vue-chart-3": "^3.1.8",
"vuetify": "^3.4.10"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{html,css,less,ejs}": [
"prettier --write",
"git add"
],
"*.js": "eslint --cache --fix"
}
}