-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.17 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.17 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
{
"name": "livepeer-website",
"version": "0.1.0",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --max-warnings 0",
"typecheck": "tsc --noEmit --incremental false",
"format": "prettier . --write",
"format:check": "prettier . --check"
},
"dependencies": {
"framer-motion": "^11.15.0",
"gray-matter": "^4.0.3",
"lucide-react": "^1.6.0",
"next": "^15.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"reading-time": "^1.5.0",
"rehype-external-links": "^3.0.0",
"rehype-highlight": "^7.0.2",
"rehype-stringify": "^10.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"unified": "^11.0.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4.0.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"eslint": "^9",
"eslint-config-next": "^15.1.0",
"eslint-config-prettier": "^10.1.8",
"postcss": "^8.5.0",
"prettier": "^3.8.1",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.0"
}
}