-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.7 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
{
"name": "next-app-boilerplate",
"version": "1.12.0",
"private": true,
"author": {
"name": "POPO He",
"email": "[email protected]"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "prettier --cache --write './**/*.{js,jsx,ts,tsx,css,scss,md,json}' --config ./prettier.config.js",
"lint": "next lint",
"analyze": "ANALYZE=true next build",
"test": "playwright test",
"test:ui": "playwright test --ui",
"prepare": "husky install"
},
"dependencies": {
"@tanstack/react-query": "^5.59.0",
"@types/node": "22.7.4",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.0",
"axios": "^1.7.7",
"next": "14.2.14",
"next-intl": "3.20.0",
"next-view-transitions": "^0.3.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"tailwindcss": "3.4.13",
"typescript": "5.6.2",
"valtio": "^2.0.0"
},
"devDependencies": {
"@beam-australia/react-env": "^3.1.1",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@next/bundle-analyzer": "14.2.14",
"@playwright/test": "^1.47.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"autoprefixer": "10.4.20",
"clsx": "^2.1.1",
"eslint": "8.57.0",
"eslint-config-next": "14.2.13",
"husky": "^9.1.6",
"postcss": "8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.10.0"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}
}