-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.77 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
{
"name": "next-page-zustand-reactquery-template",
"version": "0.1.1",
"author": "Kir93",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "cross-env NODE_ENV=production next build",
"postbuild": "next-sitemap --config sitemap.config.js",
"start": "cross-env NODE_ENV=production next start",
"analyzer": "cross-env NODE_ENV=production ANALYZE=true next build",
"type-check": "tsc",
"depcheck": "npx depcheck",
"svgo": "npx svgo -f public/svgs",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"browserslist": [
"> 2% in KR ",
"not dead",
"last 3 versions",
"not ie <= 11"
],
"dependencies": {
"@chakra-ui/next-js": "^2.4.2",
"@chakra-ui/react": "^2.10.3",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@tanstack/react-query": "^5.64.1",
"axios": "^1.7.9",
"dayjs": "^1.11.12",
"fast-deep-equal": "^3.1.3",
"framer-motion": "^11.16.0",
"next": "^15.1.4",
"next-sitemap": "^4.2.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-use": "^17.6.0",
"zustand": "^5.0.2"
},
"devDependencies": {
"@tanstack/react-query-devtools": "^5.62.16",
"@types/node": "22.10.5",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"cross-env": "^7.0.3",
"eslint": "^9",
"eslint-config-next": "^15.1.4",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.3",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"typescript": "^5"
},
"lint-staged": {
"**/*.{tsx,ts,jsx,js}": [
"eslint --fix",
"prettier --write"
]
}
}