-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.58 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.58 KB
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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "node -e \"try { require('husky').install() } catch (e) { if (e.code !== 'ERR_REQUIRE_ESM') throw e }\""
},
"dependencies": {
"@svgr/webpack": "^8.1.0",
"@tanstack/react-virtual": "^3.13.4",
"@types/js-cookie": "^3.0.6",
"clsx": "^2.1.1",
"cookies-next": "^5.1.0",
"firebase": "^11.5.0",
"firebase-admin": "^13.2.0",
"js-cookie": "^3.0.5",
"lottie-react": "^2.4.1",
"next": "15.3.0",
"next-pwa": "^5.6.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"tailwindcss-preset-px-to-rem": "^1.2.1"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/node": "^20",
"@types/react": "19.1.2",
"@types/react-dom": "19.1.2",
"@typescript-eslint/eslint-plugin": "^8.24.1",
"@typescript-eslint/parser": "^8.24.1",
"eslint": "^8.57.1",
"eslint-config-next": "15.3.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"minimatch": "^5.1.6",
"postcss": "^8",
"prettier": "^3.5.1",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{md,json}": [
"prettier --write"
]
},
"overrides": {
"@types/react": "19.1.2",
"@types/react-dom": "19.1.2"
}
}