-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.73 KB
/
package.json
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": "nyan.stream",
"description": "Source code of NYAN.STREAM website.",
"private": true,
"version": "3.1.0",
"author": "Dmitry <dmitry@cojam.ru> (https://e965.ru)",
"repository": "github:nyanstream/nyan.stream-next",
"license": "MIT",
"scripts": {
"start": "next",
"build": "next build && next-sitemap --config next-sitemap.config.js",
"dist": "npm run build",
"lint": "next lint",
"prettier": "prettier --write **/*.{json,js,ts,tsx,scss}",
"lint-staged": "lint-staged",
"prepare": "/bin/sh -c 'if type git >/dev/null 2>&1; then git config core.hooksPath .git-hooks; else true; fi;'",
"generate-snat-client": "swagger-typescript-api --path http://localhost:8000/apidocs/json --responses --extract-response-body --extract-enums --api-class-name SnatApiClient --output ./src/api --name snat.ts"
},
"lint-staged": {
"*.{json,js,ts,tsx,scss}": [
"prettier --write"
]
},
"dependencies": {
"@vidstack/react": "1.12.12",
"clsx": "2.1.1",
"dayjs": "1.11.13",
"es-toolkit": "1.31.0",
"hls.js": "1.5.17",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "5.4.0",
"react-markdown": "9.0.1",
"react-string-replace": "1.1.1",
"react-tiny-popover": "8.1.4",
"zod": "3.24.1"
},
"devDependencies": {
"@types/node": "22.10.1",
"@types/react": "18.2.58",
"@types/react-dom": "18.2.19",
"@typescript-eslint/eslint-plugin": "8.17.0",
"@typescript-eslint/parser": "8.17.0",
"eslint": "8.57.0",
"eslint-config-next": "15.0.4",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"lint-staged": "15.2.10",
"next": "15.0.4",
"next-sitemap": "4.2.3",
"prettier": "3.2.5",
"sass": "1.82.0",
"sharp": "0.33.5",
"swagger-typescript-api": "13.0.23",
"typescript": "5.7.2"
}
}