-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.28 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 3.28 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "totem-app",
"version": "1.0.3",
"description": "TotemBound is a game where players raise, train, and evolve mystical spirit animal companions. Players connect to their totemic spirit animals, unlocking wisdom, rewards, and achievements in an immersive journey of growth and discovery.",
"private": true,
"dependencies": {
"@aws-sdk/client-cognito-identity": "^3.995.0",
"@babel/helpers": "^7.26.10",
"@babel/runtime": "^7.26.10",
"@marsidev/react-turnstile": "1.1.0",
"http-proxy-middleware": "^3.0.5",
"lucide-react": "^0.474.0",
"mqtt": "^5.15.0",
"posthog-js": "^1.239.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.30.3",
"socket.io-client": "^4.8.3",
"tailwind-merge": "^3.0.1",
"tailwindcss": "^3.3.6",
"tailwindcss-animate": "^1.0.7",
"web-vitals": "^2.1.4"
},
"scripts": {
"dev": "vite",
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"test:ci": "vitest run --coverage",
"test:ui": "vitest --ui",
"coverage": "vitest --coverage",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"check-types": "tsc --noEmit",
"analyze": "vite build --mode analyze",
"serve": "vite preview --port 3000"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/totembound/totem-app.git"
},
"author": "TotemBound",
"license": "MIT",
"bugs": {
"url": "https://github.com/totembound/totem-app/issues"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@eslint/js": "^9.39.3",
"@tailwindcss/typography": "^0.5.16",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/lodash": "^4.17.15",
"@types/node": "^22.10.7",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"@vitejs/plugin-react": "^5.0.0",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/eslint-plugin": "^1.6.9",
"@vitest/ui": "^4.0.18",
"autoprefixer": "^10.4.16",
"dotenv": "^16.4.7",
"eslint": "^9.39.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-testing-library": "^7.16.0",
"globals": "^16.5.0",
"jsdom": "^28.0.0",
"lodash": "^4.17.21",
"postcss": "^8.4.41",
"rollup-plugin-visualizer": "^6.0.3",
"typescript": "^5.9.3",
"vite": "^7.1.2",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^4.0.18",
"workbox-cacheable-response": "^7.3.0",
"workbox-expiration": "^7.3.0",
"workbox-precaching": "^7.3.0",
"workbox-routing": "^7.3.0",
"workbox-strategies": "^7.3.0",
"workbox-window": "^7.3.0"
},
"overrides": {
"serialize-javascript": ">=7.0.5",
"@babel/plugin-transform-modules-systemjs": "^7.29.4",
"@protobufjs/utf8": "^1.1.1",
"fast-uri": "^3.1.2",
"ip-address": "^10.2.0",
"protobufjs": "^7.5.8"
}
}