-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.29 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "mirujima_fe",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development next dev",
"dev-https": "cross-env NODE_ENV=development next dev --experimental-https",
"build": "next build",
"start": "next start",
"lint": "eslint . --fix",
"prepare": "[ \"$HUSKY\" != \"0\" ] && husky install || echo 'Husky disabled in PR'",
"format": "prettier --write ."
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@blocknote/core": "^0.23.1",
"@blocknote/mantine": "^0.23.1",
"@blocknote/react": "^0.23.1",
"@hookform/resolvers": "^3.10.0",
"@serwist/next": "^9.0.12",
"@svgr/webpack": "^8.1.0",
"@tanstack/react-query": "^5.66.0",
"@types/crypto-js": "^4.2.2",
"@use-gesture/react": "^10.3.1",
"axios": "^1.7.9",
"cookies-next": "^5.1.0",
"crypto-js": "^4.2.0",
"date-fns": "^4.1.0",
"lodash": "^4.17.21",
"motion": "^12.3.0",
"next": "15.1.6",
"react": "19.0.0",
"react-canvas-confetti": "^2.0.7",
"react-dom": "19.0.0",
"react-hook-form": "^7.54.2",
"react-hot-toast": "^2.5.1",
"react-intersection-observer": "^9.15.1",
"react-rnd": "^10.5.2",
"recharts": "^2.15.1",
"tailwind-scrollbar-hide": "^2.0.0",
"zod": "^3.24.1",
"zustand": "^5.0.3"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@eslint/eslintrc": "^3",
"@tanstack/react-query-devtools": "^5.66.0",
"@types/lodash": "^4.17.15",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"babel-loader": "^10.0.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-google": "^0.14.0",
"eslint-config-next": "^15.1.6",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-prettier": "^5.2.3",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"postcss": "^8",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"serwist": "^9.0.12",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}