-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 4.73 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 4.73 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "free-planning-poker",
"url": "https://free-planning-poker.com/",
"repository": {
"type": "git",
"url": "https://github.com/jkrumm/free-planning-poker"
},
"engines": {
"node": "22.x"
},
"author": "Johannes Krumm",
"description": "Estimate your story points faster and easier with this free agile scrum sprint planning poker app. Open source and privacy focused.",
"homepage": "https://free-planning-poker.com/",
"version": "8.3.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev -p 3001",
"dev:all": "concurrently npm:dev:all:*",
"dev:all:logdy": "logdy socket --port 8080 8081 8082 8083 --config logdy.config.json",
"dev:all:nextjs": "sleep 1 && doppler run -- npm run dev 2>&1 | logdy forward 8081",
"dev:all:server": "sleep 1 && cd fpp-server && bun dev 2>&1 | logdy forward 8082",
"dev:all:analytics": "sleep 1 && cd fpp-analytics && uv run uvicorn main:app --reload --port 5100 2>&1 | logdy forward 8083",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"{src,test}/**\"",
"format:check": "prettier --check \"{src,test}/**\"",
"type-check": "tsc --noEmit",
"prepare": "lefthook install",
"pre": "npm run format && npm run lint && npm run type-check && SKIP_ENV_VALIDATION=1 npm run build",
"validate": "concurrently --names \"nextjs,fpp-server,fpp-analytics\" --prefix-colors \"cyan,magenta,yellow\" \"npm run pre\" \"cd fpp-server && bun run validate\" \"npm run fpp-analytics:validate\"",
"validate:nextjs": "npm run pre",
"validate:fpp-server": "cd fpp-server && bun run validate",
"validate:fpp-analytics": "npm run fpp-analytics:validate",
"fpp-analytics:format": "cd fpp-analytics && uv run ruff format .",
"fpp-analytics:format:check": "cd fpp-analytics && uv run ruff format --check .",
"fpp-analytics:lint": "cd fpp-analytics && uv run ruff check .",
"fpp-analytics:lint:fix": "cd fpp-analytics && uv run ruff check --fix .",
"fpp-analytics:type-check": "cd fpp-analytics && uv run mypy .",
"fpp-analytics:validate": "npm run fpp-analytics:format && npm run fpp-analytics:lint && npm run fpp-analytics:type-check",
"release": "release-it",
"db:generate": "npx drizzle-kit generate",
"db:migrate": "npx drizzle-kit migrate",
"db:studio": "npx drizzle-kit studio",
"db:check": "npx drizzle-kit check"
},
"dependencies": {
"@mantine/core": "^8.3.13",
"@mantine/form": "^8.3.13",
"@mantine/hooks": "^8.3.13",
"@mantine/notifications": "^8.3.13",
"@sentry/nextjs": "^10.38.0",
"@t3-oss/env-nextjs": "^0.13.10",
"@tabler/icons-react": "^3.36.1",
"@tailwindcss/typography": "^0.5.19",
"@tanstack/react-query": "^5.90.20",
"@trpc/client": "^11.9.0",
"@trpc/next": "^11.9.0",
"@trpc/react-query": "^11.9.0",
"@trpc/server": "^11.9.0",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.36.1",
"ag-charts-react": "^13.0.1",
"canvas-confetti": "^1.9.4",
"clsx": "^2.1.1",
"country-region-data": "^4.0.0",
"drizzle-orm": "^0.45.1",
"framer-motion": "^12.29.2",
"motion": "^12.29.2",
"mysql2": "^3.16.2",
"nanoid": "^5.1.6",
"next": "^16.1.6",
"normalize.css": "^8.0.1",
"pino": "^10.3.0",
"pino-http": "^11.0.0",
"pino-pretty": "^13.1.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-intersection-observer": "^10.0.2",
"react-markdown": "^10.1.0",
"react-use-websocket": "^4.13.0",
"superjson": "^2.2.6",
"tailwind-merge": "^3.4.0",
"zod": "^4.3.6",
"zustand": "^5.0.10"
},
"devDependencies": {
"@commitlint/cli": "^20.4.0",
"@commitlint/config-conventional": "^20.4.0",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@release-it/conventional-changelog": "^10.0.4",
"@tailwindcss/postcss": "^4.1.18",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/canvas-confetti": "^1.9.0",
"@types/node": "^22.19.2",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"concurrently": "^9.2.1",
"dotenv": "^17.2.3",
"drizzle-kit": "^0.31.8",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.6",
"eslint-plugin-drizzle": "^0.2.3",
"globals": "^17.2.0",
"knip": "^5.82.1",
"lefthook": "^2.0.16",
"postcss": "^8.5.6",
"postcss-preset-mantine": "^1.18.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"release-it": "^19.2.4",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0"
},
"ct3aMetadata": {
"initVersion": "7.30.2"
},
"overrides": {
"conventional-changelog-conventionalcommits": "^8.0.0"
}
}