-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
114 lines (114 loc) · 4.04 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "nextjs-boilerplate",
"version": "0.1.0",
"private": true,
"packageManager": "[email protected]+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee",
"scripts": {
"analyze": "cross-env NODE_ENV=production ANALYZE=true BUNDLE_ANALYZE=browser next build",
"build": "cross-env NODE_ENV=production next build",
"build:ci": "cross-env NODE_ENV=production CI=true next build",
"dev": "cross-env NODE_ENV=development next dev --turbopack -p 4399",
"lint": "eslint --cache --fix",
"prebuild": "rimraf .next || exit 0",
"prepare": "pnpm exec simple-git-hooks && test -f .env || cp .env.template .env",
"start": "npm run dev"
},
"dependencies": {
"@floating-ui/react-dom": "2.1.2",
"@radix-ui/react-dialog": "1.1.2",
"@tanstack/query-async-storage-persister": "5.60.5",
"@tanstack/react-query": "5.60.5",
"@tanstack/react-query-persist-client": "5.60.5",
"@types/js-cookie": "3.0.6",
"axios": "1.7.7",
"clsx": "2.1.1",
"dayjs": "1.11.13",
"foxact": "0.2.41",
"framer-motion": "11.11.17",
"idb-keyval": "6.2.1",
"immer": "10.1.1",
"jojoo": "0.3.0",
"jotai": "2.10.2",
"js-cookie": "3.0.5",
"next": "15.0.3",
"next-themes": "0.4.3",
"react": "19.0.0-rc-66855b96-20241106",
"react-dom": "19.0.0-rc-66855b96-20241106",
"react-error-boundary": "4.1.2",
"react-intersection-observer": "9.13.1",
"react-toastify": "10.0.6",
"tailwind-merge": "2.5.4",
"vaul": "1.1.1"
},
"devDependencies": {
"@iconify-json/material-symbols": "1.2.7",
"@iconify-json/mingcute": "1.2.1",
"@iconify/tailwind": "1.1.3",
"@innei/prettier": "0.15.0",
"@next/bundle-analyzer": "15.0.3",
"@nextui-org/theme": "2.2.11",
"@radix-ui/colors": "3.0.0",
"@tailwindcss/typography": "0.5.15",
"@tanstack/react-query-devtools": "5.60.5",
"@types/markdown-escape": "1.1.3",
"@types/node": "22.9.0",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"autoprefixer": "10.4.20",
"cross-env": "7.0.3",
"dotenv": "16.4.5",
"eslint": "9.15.0",
"eslint-config-hyoban": "3.1.13",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"postcss": "8.4.49",
"postcss-import": "16.1.0",
"postcss-js": "4.0.1",
"postcss-nested": "7.0.2",
"postcss-preset-env": "10.1.1",
"postcss-prune-var": "1.1.2",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"simple-git-hooks": "2.11.1",
"tailwind-scrollbar": "3.1.0",
"tailwind-variants": "0.3.0",
"tailwindcss": "^3.4.15",
"typescript": "5.6.3",
"windy-radix-palette": "2.0.0-beta.7"
},
"pnpm": {
"overrides": {
"array-includes": "npm:@nolyfill/array-includes@latest",
"array.prototype.findlastindex": "npm:@nolyfill/array.prototype.findlastindex@latest",
"array.prototype.flat": "npm:@nolyfill/array.prototype.flat@latest",
"array.prototype.flatmap": "npm:@nolyfill/array.prototype.flatmap@latest",
"array.prototype.tosorted": "npm:@nolyfill/array.prototype.tosorted@latest",
"has": "npm:@nolyfill/has@latest",
"object.assign": "npm:@nolyfill/object.assign@latest",
"object.entries": "npm:@nolyfill/object.entries@latest",
"object.fromentries": "npm:@nolyfill/object.fromentries@latest",
"object.groupby": "npm:@nolyfill/object.groupby@latest",
"object.hasown": "npm:@nolyfill/object.hasown@latest",
"object.values": "npm:@nolyfill/object.values@latest",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@latest",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]"
}
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"prettier --ignore-path ./.gitignore --write "
]
},
"bump": {
"before": [
"git pull --rebase",
"ni"
],
"changelog": true
}
}