-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.69 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
{
"name": "streamhub",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"format": "prettier --write .",
"test-all": "npm run check-format && npm run check-lint && npm run check-types && npm run build",
"prepare": "husky install",
"analyze": "cross-env ANALYZE=true next build"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-tabs": "^1.0.4",
"@tanstack/react-query": "^4.24.10",
"@tanstack/react-query-devtools": "^4.24.14",
"debounce": "^2.0.0",
"framer-motion": "^10.16.5",
"next": "^12.3.1",
"nprogress": "^0.2.0",
"qs": "^6.11.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-youtube": "^10.1.0",
"sharp": "^0.31.3",
"slugify": "^1.6.6",
"use-debounce": "^10.0.0"
},
"devDependencies": {
"@next/bundle-analyzer": "^14.0.3",
"@types/node": "^18.13.0",
"@types/nprogress": "^0.2.0",
"@types/qs": "^6.9.7",
"@types/react": "^18.0.28",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"cross-env": "^7.0.3",
"eslint": "^8.24.0",
"eslint-config-next": "^12.3.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.0",
"prettier": "^2.8.8",
"sass": "^1.62.1",
"typescript": "^4.9.5"
}
}