-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.08 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
61
62
63
64
65
66
67
68
69
{
"name": "botc-townsquare",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"server": "node server/index.js",
"serve": "concurrently \"npm run dev\" \"npm run server\"",
"start": "cross-env NODE_ENV=production node server/index.js",
"preview": "vite preview",
"formatter": "npx prettier . --write",
"lint": "eslint src --ext .vue && prettier --write src",
"test:unit": "vitest",
"test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'",
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.14.0",
"@fastify/cors": "^9.0.1",
"@fastify/static": "^7.0.4",
"@vueuse/core": "^11.0.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"express": "^4.21.0",
"fastify": "^4.28.1",
"fastify-socket.io": "^5.1.0",
"lucide-vue-next": "^0.439.0",
"mitt": "^3.0.1",
"pinia": "^2.1.7",
"posthog-js": "^1.160.3",
"radix-vue": "^1.9.5",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"vue": "^3.4.29",
"vue-router": "^4.3.3",
"ws": "^8.18.0"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@types/node": "^22.5.4",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"@vitejs/plugin-vue": "^5.1.3",
"@vue/test-utils": "^2.4.6",
"autoprefixer": "^10.4.20",
"concurrently": "^9.0.0",
"cross-env": "^7.0.3",
"cypress": "^13.12.0",
"dotenv": "^16.4.5",
"eslint": "^9.10.0",
"eslint-plugin-vue": "^9.28.0",
"globals": "^15.9.0",
"jsdom": "^24.1.0",
"prettier": "3.3.3",
"sass-embedded": "^1.78.0",
"start-server-and-test": "^2.0.4",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0",
"vite": "^5.4.6",
"vite-plugin-checker": "^0.8.0",
"vitest": "^1.6.0"
}
}