-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.51 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
{
"name": "nextjs-typescript-template",
"version": "1.0.0",
"private": false,
"scripts": {
"dev": "next dev -p 3001",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettify": "prettier './**/*.{js,jsx,mjs,cjs,ts,tsx,css,md,json,yml,yaml,html}' --config ./.prettierrc.js",
"format": "npm run prettify -- --check",
"format:fix": "npm run prettify -- --write"
},
"engines": {
"pnpm": "^9.1.1",
"node": "^18.20.3"
},
"dependencies": {
"@t3-oss/env-nextjs": "0.10.1",
"next": "14.2.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"zod": "3.23.8"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@tanstack/react-query-devtools": "^5.51.1",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/node": "20.11.19",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.0",
"@typescript-eslint/eslint-plugin": "7.0.2",
"@typescript-eslint/parser": "7.0.2",
"eslint": "8.56.0",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-unused-imports": "3.1.0",
"postcss": "8.4.35",
"prettier": "2.8.1",
"tailwindcss": "3.4.1",
"typescript": "5.3.3"
}
}