-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
91 lines (91 loc) · 2.64 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
84
85
86
87
88
89
90
91
{
"name": "next-plate",
"version": "1.11.0",
"private": true,
"author": "Gustavo Matheus <[email protected]>",
"description": "A super template for Next.js with a pack of incredible tools",
"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.8.0",
"@chakra-ui/icons": "2.0.19",
"@chakra-ui/react": "2.5.5",
"@emotion/react": "11.10.8",
"@emotion/styled": "11.10.8",
"@hookform/resolvers": "2.9.11",
"@tanstack/react-query": "4.29.5",
"axios": "1.3.6",
"framer-motion": "10.11.6",
"next": "13.2.4",
"next-compose-plugins": "2.2.1",
"next-images": "1.8.5",
"next-pwa": "5.6.0",
"next-seo": "5.15.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.43.9",
"react-icons": "4.8.0",
"react-use": "17.4.0",
"sharp": "0.32.1",
"yup": "1.1.1",
"zustand": "4.3.8"
},
"devDependencies": {
"@commitlint/cli": "17.6.3",
"@commitlint/config-conventional": "17.6.3",
"@next/eslint-plugin-next": "13.2.4",
"@testing-library/dom": "9.0.1",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/jest": "29.5.1",
"@types/node": "18.15.13",
"@types/react": "18.0.38",
"@typescript-eslint/eslint-plugin": "5.55.0",
"@typescript-eslint/parser": "5.55.0",
"eslint": "8.36.0",
"eslint-config-next": "13.2.4",
"eslint-config-prettier": "8.7.0",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-testing-library": "5.10.3",
"husky": "8.0.3",
"jest": "29.5.0",
"lint-staged": "13.2.2",
"next-sitemap": "4.0.9",
"prettier": "2.8.8",
"standard-version": "9.5.0",
"typescript": "5.0.4"
}
}