-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.6 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
{
"name": "tremor-live",
"version": "0.1.0",
"description": "Real-time prediction market tremor monitoring dashboard",
"author": "TREMOR.LIVE Contributors",
"license": "MIT",
"homepage": "https://tremor.live",
"repository": {
"type": "git",
"url": "https://github.com/sculptdotfun/tremor.git"
},
"bugs": {
"url": "https://github.com/sculptdotfun/tremor/issues"
},
"keywords": [
"prediction-markets",
"polymarket",
"real-time",
"dashboard",
"market-analysis",
"trading",
"nextjs",
"convex",
"typescript"
],
"private": false,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"lint": "eslint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"dependencies": {
"@vercel/analytics": "^1.5.0",
"convex": "^1.26.2",
"next": "15.5.2",
"react": "19.1.0",
"react-dom": "19.1.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"autoprefixer": "^10.4.21",
"eslint": "^9",
"eslint-config-next": "15.5.2",
"husky": "^9.1.7",
"lint-staged": "^16.1.6",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^3",
"typescript": "^5"
}
}