-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.4 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.4 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
47
{
"name": "nextjs-react-query",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"eslint:check": "eslint . --ext .cjs,.ts,.tsx,.astro --ignore-path .gitignore",
"eslint:write": "npm run eslint:check -- --fix",
"prettier:check": "prettier --check --ignore-path .gitignore .",
"prettier:write": "prettier --write --ignore-path .gitignore .",
"ts:check": "tsc --jsx preserve --skipLibCheck"
},
"dependencies": {
"@next/font": "13.1.1",
"@tanstack/react-query": "^4.20.4",
"@tippyjs/react": "^4.2.6",
"@types/node": "18.11.17",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"@types/styled-components": "^5.1.26",
"axios": "^1.2.1",
"eslint": "8.30.0",
"eslint-config-next": "13.1.1",
"next": "13.1.1",
"react": "18.2.0",
"react-aria": "^3.22.0",
"react-dom": "18.2.0",
"styled-components": "^5.3.6",
"typescript": "4.9.4"
},
"devDependencies": {
"@iconify/react": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-simple-import-sort": "^8.0.0",
"prettier": "^2.8.1"
},
"resolutions": {
"styled-components": "^5"
}
}