-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.14 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "nextjs-boilerplate",
"version": "0.0.1",
"private": true,
"author": "Sila <[email protected]>",
"description": "Next.js all in one you need",
"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": "next build",
"analyze": "cross-env ANALYZE=true next build",
"build:export": "npm run build && next export",
"deploy:surge": "surge ./out/ http://nextjs-boilerplate.surge.sh/ && cd ..",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"serve:out": "npx serve out",
"clean": "rm -rf .next out",
"lint": "next lint",
"lint:fix": "eslint src --fix && pnpm run format",
"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",
"prepare": "husky install"
},
"dependencies": {
"@ebay/nice-modal-react": "^1.2.6",
"@headlessui/react": "^1.6.6",
"@headlessui/tailwindcss": "^0.1.0",
"@rematch/core": "^2.2.0",
"@rematch/immer": "^2.1.3",
"@rematch/loading": "^2.1.2",
"@rematch/persist": "^2.1.2",
"@rematch/select": "^3.1.2",
"@rematch/updated": "^2.1.2",
"ahooks": "^3.7.0",
"autoprefixer": "^10.4.8",
"axios": "0.27.2",
"framer-motion": "^7.2.1",
"immer": "^9.0.15",
"lodash": "^4.17.21",
"next": "^12.2.6-canary.2",
"next-images": "1.8.4",
"next-seo": "5.5.0",
"nprogress": "^0.2.0",
"postcss": "^8.4.16",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.4.0",
"react-redux": "^8.0.2",
"redux": "^4.2.0",
"redux-persist": "^6.0.0",
"sharp": "0.30.7",
"tailwind-merge": "^1.6.0",
"tailwindcss": "^3.1.8"
},
"devDependencies": {
"@babel/core": "7.18.13",
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@iconify/json": "^2.1.96",
"@next/bundle-analyzer": "^12.2.5",
"@next/env": "^12.2.5",
"@next/eslint-plugin-next": "12.2.5",
"@svgr/core": "^6.3.1",
"@tailwindcss/line-clamp": "^0.4.0",
"@tailwindcss/typography": "^0.5.4",
"@types/lodash": "^4.14.184",
"@types/node": "18.7.11",
"@types/react": "18.0.17",
"@types/react-redux": "^7.1.24",
"@typescript-eslint/eslint-plugin": "5.34.0",
"@typescript-eslint/parser": "5.34.0",
"@welldone-software/why-did-you-render": "7.0.1",
"babel-plugin-import": "^1.13.5",
"cross-env": "^7.0.3",
"eslint": "8.22.0",
"eslint-config-next": "12.2.5",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"next-sitemap": "3.1.21",
"prettier": "2.7.1",
"sass": "^1.54.5",
"standard-version": "9.5.0",
"typescript": "4.7.4",
"unplugin-auto-import": "^0.11.2",
"unplugin-icons": "^0.14.8",
"utility-types": "^3.10.0"
}
}