-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.19 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
{
"name": "chipchat",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"test": "vitest run --dir tests",
"test:watch": "vitest watch --dir tests"
},
"dependencies": {
"@vueuse/nuxt": "^10.7.2",
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.3.0",
"nuxt": "^3.10.1",
"socket.io": "^4.7.4",
"socket.io-client": "^4.7.4",
"vue": "^3.4.15",
"vue-router": "^4.2.5",
"zod": "^3.22.4"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.4",
"@nuxt/test-utils": "^3.11.0",
"@nuxtjs/color-mode": "^3.3.2",
"@nuxtjs/tailwindcss": "^6.11.3",
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.5",
"@vitest/ui": "^1.2.2",
"@vue/test-utils": "^2.4.4",
"eslint": "^8.56.0",
"get-port-please": "^3.1.2",
"happy-dom": "^13.3.8",
"mongodb-memory-server": "^9.1.6",
"nuxt-auth-utils": "^0.0.15",
"nuxt-icon": "^0.6.8",
"playwright-core": "^1.41.2",
"vitest": "^1.2.2"
},
"pnpm": {
"overrides": {
"vue": "3.4.8"
}
}
}