forked from jjunior96/dev-junior-alves-youtube
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.46 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.46 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
{
"name": "youtube-videos",
"version": "0.1.0",
"author": {
"name": "Junior Alves"
},
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"preview": "next build && next start",
"sitemap": "node src/scripts/sitemap.mjs",
"rss": "node src/scripts/rss.mjs",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"lint": "eslint src --max-warnings=0",
"typecheck": "bash -c tsc --project tsconfig.json --noEmit",
"test": "jest",
"test:watch": "yarn test --watch",
"test:coverage": "yarn test --coverage --detectOpenHandles",
"test:coverage:text": "yarn test --coverageReporters='text-summary'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*": [
"yarn lint --fix",
"yarn typecheck",
"yarn test --findRelatedTests --passWithNoTests --bail"
]
},
"dependencies": {
"@phosphor-icons/react": "^2.0.13",
"autoprefixer": "10.4.16",
"clsx": "^2.0.0",
"next": "13.5.6",
"next-compose-plugins": "^2.2.1",
"next-pwa": "^5.6.0",
"next-sitemap": "^4.2.3",
"postcss": "8.4.31",
"query-string": "^8.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-spinners": "^0.13.8",
"sharp": "^0.32.6",
"tailwind-merge": "^1.14.0",
"tailwind-styled-components": "^2.2.0",
"tailwindcss": "3.3.4",
"typescript": "5.2.2"
},
"devDependencies": {
"@swc/core": "^1.3.95",
"@swc/jest": "^0.2.29",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.6",
"@types/node": "20.8.8",
"@types/react": "18.2.31",
"@types/react-dom": "18.2.14",
"@types/testing-library__jest-dom": "^5.14.9",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "8.52.0",
"eslint-config-george-lint": "^1.0.8",
"eslint-config-next": "^13.5.6",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sonarjs": "^0.21.0",
"husky": "^8.0.3",
"install": "^0.13.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.6"
}
}