-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.12 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
{
"name": "nuxt-app",
"private": true,
"scripts": {
"build": "nuxt build",
"server": "pouchdb-server --port 5984 --dir ./.data",
"dev": "yarn server & nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"test:watch": "vitest watch",
"postinstall": "nuxt prepare"
},
"devDependencies": {
"@nuxt/devtools": "latest",
"@nuxt/test-utils": "^3.6.5",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@nuxtjs/eslint-module": "^4.1.0",
"@types/node": "^18.16.19",
"@types/pouchdb": "^6.4.0",
"@typescript-eslint/parser": "^6.1.0",
"@vitest/browser": "^0.33.0",
"@vitest/ui": "^0.33.0",
"eslint": "^8.45.0",
"happy-dom": "^10.5.2",
"nuxt": "^3.6.5",
"nuxt-vitest": "^0.10.1",
"pouchdb": "^8.0.1",
"pouchdb-server": "^4.2.0",
"typescript": "4.9.5",
"vite-plugin-vuetify": "^1.0.2",
"vitest": "^0.33.0"
},
"dependencies": {
"@mdi/font": "^7.2.96",
"events": "^3.3.0",
"pouchdb-authentication": "^1.1.3",
"pouchdb-browser": "^8.0.1",
"pouchdb-find": "^8.0.1",
"sass": "^1.64.0",
"vuetify": "^3.3.9"
}
}