generated from gustavomorinaga/reactsetup
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
83 lines (83 loc) · 2.32 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
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
{
"name": "reactsetup",
"version": "2.0.2",
"private": true,
"author": "Gustavo Matheus <[email protected]>",
"description": "Tool to check who doesn't follow you back on GitHub",
"lint-staged": {
"src/**/*.+(js|jsx|ts|tsx|json|md)": [
"pnpm run lint:fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "pnpm run partytown && next build",
"partytown": "partytown copylib public/~partytown",
"lint": "next lint",
"lint:fix": "eslint src --fix && pnpm run format",
"test": "jest",
"test:watch": "jest --watch",
"type-check": "tsc --noEmit",
"format": "prettier --write src",
"up": "pnpm up --interactive",
"up-latest": "pnpm up --latest",
"release": "standard-version",
"release-as-major": "pnpm run release --release-as major",
"release-as-minor": "pnpm run release --release-as minor",
"release-as-patch": "pnpm run release --release-as patch",
"push-release": "git push --follow-tags origin main",
"pull": "git rebase origin main -i",
"pre-commit": "pnpm run lint",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"prepare": "husky install"
},
"dependencies": {
"@builder.io/partytown": "0.7.3",
"axios": "1.6.0",
"cssnano": "5.1.14",
"framer-motion": "7.6.19",
"next": "13.5.1",
"next-auth": "4.24.5",
"next-compose-plugins": "2.2.1",
"next-images": "1.8.4",
"next-pwa": "5.6.0",
"next-seo": "5.15.0",
"postcss-import": "15.1.0",
"postcss-nesting": "10.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "4.7.1",
"sass": "1.56.2",
"sharp": "0.32.6",
"swr": "2.0.0"
},
"devDependencies": {
"@commitlint/cli": "17.3.0",
"@commitlint/config-conventional": "17.3.0",
"@next/eslint-plugin-next": "13.0.6",
"@types/node": "18.11.13",
"@types/react": "18.0.26",
"@typescript-eslint/eslint-plugin": "5.46.0",
"@typescript-eslint/parser": "5.46.0",
"autoprefixer": "10.4.13",
"eslint": "8.29.0",
"eslint-config-next": "13.0.6",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.2",
"lint-staged": "13.1.0",
"next-sitemap": "3.1.32",
"postcss": "8.4.31",
"prettier": "2.8.1",
"standard-version": "9.5.0",
"tailwind-scrollbar": "2.0.1",
"tailwindcss": "3.2.4",
"typescript": "4.9.4"
}
}