-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.31 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.31 KB
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
{
"name": "admin",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"start": "next start",
"lint": "next lint",
"predeploy": "yarn run build && yarn run export",
"deploy": "next build && touch out/.nojekyll && git add -f out/ && git commit -m \"Deploy\" && git subtree push --prefix out origin gh-pages"
},
"dependencies": {
"@tanstack/react-query": "^5.29.2",
"@tanstack/react-query-devtools": "^5.29.2",
"@tanstack/react-query-next-experimental": "^5.29.2",
"@types/js-cookie": "^3.0.6",
"axios": "^1.6.8",
"babel-plugin-styled-components": "^2.1.4",
"chokidar": "^3.6.0",
"dayjs": "^1.11.11",
"js-cookie": "^3.0.5",
"next": "13.5.2",
"react": "^18",
"react-dom": "^18",
"react-icons": "^5.2.1",
"react-query": "^3.39.3",
"styled-components": "^6.1.9",
"styled-reset": "^4.5.2",
"sweetalert2": "^11.10.8",
"use-client": "^1.2.0",
"zustand": "^4.5.2"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/styled-components": "^5.1.34",
"eslint": "^8",
"eslint-config-next": "14.1.4",
"typescript": "^5"
},
"packageManager": "yarn@1.22.22"
}