-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.36 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
{
"name": "boilerplate-react-app",
"description": "boilerplate codes to quick-start a react app",
"version": "1.0.0",
"author": "YOUR NAME",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"lint": "next lint",
"start": "next start"
},
"dependencies": {
"@tanstack/react-query": "^5.28.9",
"next": "^14.1.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recoil": "^0.7.7",
"sass": "^1.72.0",
"sharp": "^0.33.3"
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "^5.28.6",
"@tanstack/react-query-devtools": "^5.28.10",
"@testing-library/react": "^16.0.0",
"@types/node": "^22.5.4",
"@types/react": "^18.2.73",
"@types/react-dom": "^18.2.23",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"ejs": "^3.1.9",
"eslint": "^8.57.0",
"eslint-config-next": "14.1.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5",
"typescript": "^5.4.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead"
],
"development": [
"last 1 chrome version",
"last 1 firefox version"
],
"ssr": [
"node 20"
]
}
}