-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.86 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.86 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
{
"name": "template-mux-nextjs",
"description": "Wanna build a Next.js app at Mux? Starting here's not a bad idea.",
"version": "1.0.0",
"author": "Mux DevEx <devex@mux.com>",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "prettier --check ./ && next lint",
"format": "prettier --write ./ && next lint --fix",
"prepare": "husky install",
"inngest": "npx --yes inngest-cli@latest dev",
"partykit": "cd app && npx partykit dev",
"ngrok": "ngrok http http://localhost:3000",
"start:dev": "concurrently -c \"white,#6366f1,red,#022384\" --names \"NEXT.JS,INNGEST,PARTYKIT,NGROK\" \"npm run dev\" \"npm run inngest\" \"npm run partykit\" \"npm run ngrok\""
},
"dependencies": {
"@aws-sdk/client-s3": "^3.515.0",
"@aws-sdk/s3-request-presigner": "^3.515.0",
"@inngest/middleware-encryption": "^0.1.3",
"@mux/mux-node": "^10.1.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "20.4.2",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"clsx": "^2.1.0",
"eslint": "8.45.0",
"eslint-config-next": "^14.0.2",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.1.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"immer": "^10.0.4",
"inngest": "^3.52.1",
"next": "^14.0.2",
"partysocket": "1.0.0",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"typescript": "^5.9.3",
"zod": "^3.22.4",
"zustand": "^4.5.1"
},
"devDependencies": {
"@redux-devtools/extension": "^3.3.0",
"@tailwindcss/forms": "^0.5.7",
"autoprefixer": "^10.4.17",
"concurrently": "^8.2.2",
"partykit": "0.0.93",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1"
}
}