-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.5 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
{
"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.15.0",
"@nuxt/devtools": "latest",
"@nuxtjs/eslint-config": "^6.0.1",
"@nuxtjs/eslint-module": "^4.1.0",
"@types/pouchdb": "6.4.0",
"@types/sentiment": "^5.0.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.15.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"nuxt": "^3.10.3",
"prettier": "^2.3.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": "11.2.0",
"chart.js": "^3.9.1",
"compressorjs": "1.2.1",
"heic2any": "0.0.4",
"pouchdb": "9.0.0",
"pouchdb-authentication": "1.1.3",
"pouchdb-security-helper": "2.1.2",
"sentiment": "^5.0.2",
"vite-plugin-node-polyfills": "^0.22.0",
"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"
}
}