-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.98 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.98 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
{
"type": "module",
"scripts": {
"dev": "vite",
"dev:unified": "concurrently \"vite\" \"node server-unified.cjs\"",
"build": "vite build",
"start": "npm run build && node server-unified.cjs",
"start:production": "NODE_ENV=production npm run start",
"vercel-build": "vite build",
"format": "prettier --write .",
"lint": "eslint . && prettier . --check",
"preview": "vite preview",
"test": "vitest run",
"spacetime:generate": "spacetime generate --lang typescript --out-dir src/module_bindings --project-path server-rs",
"spacetime:publish:local": "spacetime publish hophacks-chat --project-path server-rs --server local",
"spacetime:publish": "spacetime publish hophacks-chat --project-path server-rs --server maincloud"
},
"dependencies": {
"@clockworklabs/spacetimedb-sdk": "^1.3.1",
"@mantine/core": "^8.3.1",
"@mantine/hooks": "^8.3.1",
"@mantine/notifications": "^8.3.1",
"@tabler/icons-react": "^3.34.1",
"autoprefixer": "^10.4.21",
"canvas-confetti": "^1.9.3",
"cors": "^2.8.5",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"framer-motion": "^12.23.12",
"openai": "^5.20.2",
"postcss": "^8.5.6",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"tailwindcss": "^3.4.17"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/canvas-confetti": "^1.9.0",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^5.0.1",
"concurrently": "^9.2.1",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"jsdom": "^26.0.0",
"prettier": "^3.3.3",
"sass-embedded": "^1.92.1",
"typescript": "~5.6.2",
"typescript-eslint": "^8.18.2",
"vite": "^7.1.3",
"vitest": "^3.2.4"
}
}