generated from Kir93/next-page-zustand-reactQuery-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
85 lines (85 loc) · 2.48 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
{
"name": "moyora-front",
"version": "0.0.2",
"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",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"type-check": "tsc",
"depcheck": "npx depcheck",
"svgo": "npx svgo -f public/svgs",
"prepare": "husky install",
"lint-staged": "lint-staged",
"style:lint": "stylelint '**/*.styles.{tsx,ts,jsx,js}' --fix"
},
"browserslist": [
"> 2% in KR ",
"not dead",
"last 3 versions",
"not ie <= 11"
],
"dependencies": {
"@next/font": "^13.0.5",
"@tanstack/react-query": "^4.19.0",
"@tanstack/react-query-devtools": "^4.19.0",
"antd": "^5.0.3",
"axios": "^1.2.0",
"chart.js": "^4.1.1",
"dayjs": "^1.11.6",
"fast-deep-equal": "^3.1.3",
"lodash": "^4.17.21",
"next": "^13.0.5",
"next-sitemap": "^3.1.32",
"react": "^18.2.0",
"react-chartjs-2": "^5.1.0",
"react-cookie": "^4.1.1",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-indiana-drag-scroll": "^2.2.0",
"react-use": "^17.4.0",
"styled-components": "^5.3.6",
"zustand": "^4.1.4"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.0.5",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.17",
"@types/react": "^18.0.25",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "^18.0.8",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"cross-env": "^7.0.3",
"eslint": "^8.28.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^13.0.5",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"husky": "^8.0.2",
"lint-staged": "^13.0.4",
"postcss": "^8.4.19",
"postcss-jsx": "^0.36.4",
"postcss-syntax": "^0.36.2",
"prettier": "^2.8.0",
"stylelint": "^14.15.0",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-standard": "^29.0.0",
"svgo": "^3.0.2",
"typescript": "^4.9.3"
},
"lint-staged": {
"**/*.{tsx,ts,jsx,js}": [
"eslint --fix",
"prettier --write"
]
}
}