-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.42 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
{
"name": "trello-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint **/*.{js,mjs,cjs,jsx} --ignore-pattern .next/*",
"prepare": "husky install"
},
"lint-staged": {
"**/*.{js, jsx, tsx, css, json, md}": "prettier --write",
"**/*.{js, jsx, tsx, ,mjs}": "eslint **/*.{js,mjs,cjs,jsx} --ignore-pattern .next/*"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@tanstack/react-query": "^5.64.2",
"@tanstack/react-query-devtools": "^5.64.2",
"@vercel/analytics": "^1.4.1",
"babel-plugin-react-compiler": "19.0.0-beta-63e3235-20250105",
"classnames": "^2.5.1",
"firebase": "^11.2.0",
"firebase-admin": "^13.0.2",
"geist": "^1.3.1",
"lint-staged": "^15.4.1",
"next": "15.1.5",
"prettier": "^3.4.2",
"react": "19.0.0",
"react-cookie": "^7.2.2",
"react-dom": "19.0.0"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@tanstack/eslint-plugin-query": "^5.64.2",
"autoprefixer": "^10.4.20",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-compiler": "19.0.0-beta-63e3235-20250105",
"globals": "^15.14.0",
"husky": "^9.1.7",
"postcss": "^8.5.1",
"tailwindcss": "^3.4.17"
}
}