-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3.13 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 3.13 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
{
"private": true,
"name": "modscope",
"version": "1.0.8",
"description": "ModScope is the premier analytics dashboard designed exclusively for Reddit moderators. Gain deep insights into your community's health with real-time engagement scoring, activity heatmaps, and content DNA analysis. Track top contributors, identify optimal posting times, and visualize trends to grow and manage your subreddit more effectively.",
"license": "BSD-3-Clause",
"type": "module",
"scripts": {
"build": "vite build",
"build:min": "vite build --format=esm --minify --sourcemap=false",
"deploy": "npm run type-check && npm run lint && npm run test && devvit upload",
"dev": "devvit playtest",
"launch": "npm run deploy && devvit publish",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"login": "devvit login",
"prettier": "prettier --write .",
"snapshots:download": "node tools/download-exported-snapshots.mjs",
"test": "vitest run",
"type-check": "tsc --build",
"check": "npm run type-check && npm run lint:fix && npm run prettier",
"lint:fix": "eslint 'src/**/*.{ts,tsx}' --fix",
"release": "npm run deploy && devvit publish --public",
"test:types": "tsc --noEmit",
"test:size": "npm run build:min src --metaffile=dist/client-meta.min.json --outputfile=dist/client.min.js && filesize",
"test:unit": "vitest run",
"test:unit-with-coverage": "vitest run --coverage",
"test:watch": "vitest",
"test:performance": "vitest --run src/server/services/TrendMaterializationService.test.ts",
"clean": "rm -rf coverage dist"
},
"engines": {
"node": ">=22.2.0"
},
"dependencies": {
"@devvit/start": "0.13.0",
"@devvit/web": "0.13.0",
"@hono/node-server": "^1.19.9",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"class-variance-authority": "^0.7.1",
"clsx": "2.1.1",
"date-fns": "^4.1.0",
"hono": "4.11.7",
"lucide-react": "^0.562.0",
"npm": "^11.14.0",
"react": "19.2.4",
"react-day-picker": "^9.13.0",
"react-dom": "19.2.4",
"recharts": "^3.6.0",
"tailwind-merge": "3.4.0"
},
"devDependencies": {
"@eslint/css": "^1.0.0",
"@eslint/js": "9.39.2",
"@eslint/json": "^1.2.0",
"@eslint/markdown": "^8.0.0",
"@tailwindcss/vite": "4.1.18",
"@types/node": "^22.19.7",
"@types/react": "19.2.10",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "5.1.2",
"devvit": "0.13.0",
"dotenv-cli": "8.0.0",
"eslint": "9.39.2",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-refresh": "0.4.26",
"globals": "17.2.0",
"prettier": "3.8.1",
"prettier-plugin-packagejson": "^2.5.21",
"prettier-plugin-tailwindcss": "0.7.2",
"redis": "^4.7.1",
"redis-cli": "^2.1.2",
"tailwindcss": "4.1.18",
"typescript": "5.8.3",
"typescript-eslint": "8.54.0",
"vite": "7.3.1",
"vitest": "4.0.15"
}
}