-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.25 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.25 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
{
"name": "augur",
"version": "0.1.0",
"description": "A real-time opinion trading platform where users can place positions on future events",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build --webpack",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false"
},
"keywords": [
"prediction-market",
"trading",
"nextjs",
"supabase"
],
"author": "Augur Team",
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@supabase/auth-helpers-nextjs": "^0.10.0",
"@supabase/ssr": "^0.6.1",
"@supabase/supabase-js": "^2.50.1",
"@tabler/icons-react": "^3.34.0",
"@types/react-window": "^1.8.8",
"@vercel/analytics": "^1.6.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.0.1",
"framer-motion": "^12.23.0",
"ioredis": "^5.6.1",
"lucide-react": "^0.523.0",
"next": "^16.1.6",
"next-themes": "^0.4.6",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-intersection-observer": "^9.8.1",
"react-window": "^1.8.11",
"react-window-infinite-loader": "^1.0.10",
"recharts": "^3.0.2",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.8",
"@types/node": "^24.0.3",
"@types/pg": "^8.15.4",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/react-window-infinite-loader": "^1.0.9",
"autoprefixer": "^10.4.16",
"cli-table3": "^0.6.5",
"eslint": "^9.29.0",
"eslint-config-next": "^15.3.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"node-fetch": "^3.3.2",
"pg": "^8.16.3",
"postcss": "^8.4.31",
"tailwindcss": "^3.4.0",
"ts-jest": "^29.4.0",
"typescript": "^5.8.3"
}
}