-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
145 lines (145 loc) · 4.7 KB
/
package.json
File metadata and controls
145 lines (145 loc) · 4.7 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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "chatterpay-frontend",
"license": "MIT",
"private": false,
"author": "chatterpay",
"version": "1.0.0",
"description": "Crypto at a message's distance!",
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "next build",
"type-check": "tsc --noEmit",
"lint": "biome lint .",
"lint:fix": "biome check . --write",
"format": "biome format . --write",
"create-env": "printenv > .env",
"serve": "yarn build && npm i -g http-server && http-server ./.next",
"rm:all": "rm -rf node_modules .next out dist build",
"re:start": "yarn rm:all && yarn install && yarn dev",
"re:build": "yarn rm:all && yarn install && yarn build",
"re:build-npm": "npm run rm:all && npm install && npm run build",
"dev:ts": "yarn dev & yarn ts:watch",
"ts": "tsc --noEmit --incremental",
"ts:watch": "yarn ts --watch",
"git-prune": "git remote prune origin",
"git-config": "git config --global core.autocrlf true",
"git-log": "git log --oneline --decorate",
"gitp": "git log --pretty=”%s”",
"commitlint-check-comit-msg": "npx --no-install commitlint --edit \"$1\"",
"pre-commit": "yarn run lint:fix && yarn run type-check && yarn run commitlint-check-comit-msg",
"inspect": "cross-env NODE_OPTIONS=\"--inspect --trace-warnings\" next dev",
"docker:build": "bash ./scripts/docker-build.sh",
"docker:run": "bash docker run -d -p 3000:3000 --name my-nextjs-container my-nextjs-app"
},
"dependencies": {
"@emotion/cache": "^11.10.5",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@hookform/resolvers": "^3.3.2",
"@iconify/react": "6.0.2",
"@mui/lab": "^5.0.0-alpha.155",
"@mui/material": "^5.14.20",
"@mui/system": "^5.14.20",
"@mui/x-data-grid": "^6.18.4",
"@mui/x-date-pickers": "^6.18.4",
"apexcharts": "^3.44.2",
"avvvatars-react": "^0.4.2",
"axios": "1.7.4",
"date-fns": "^2.30.0",
"ethers": "^6.13.1",
"framer-motion": "^10.16.16",
"highlight.js": "^11.9.0",
"i18next": "^23.7.8",
"i18next-browser-languagedetector": "^7.2.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"mongodb": "^6.3.0",
"mui-one-time-password-input": "^2.0.1",
"next": "^14.0.4",
"node-cache": "^5.1.2",
"notistack": "^3.0.1",
"nprogress": "^0.2.0",
"pino-pretty": "^13.0.0",
"react": "^18.2.0",
"react-apexcharts": "^1.4.1",
"react-dom": "^18.2.0",
"react-google-recaptcha": "^3.1.0",
"react-hook-form": "^7.48.2",
"react-i18next": "^13.5.0",
"react-joyride": "^2.7.1",
"react-lazy-load-image-component": "^1.6.0",
"react-qr-code": "^2.0.18",
"react-quill": "2.0.0",
"react-slick": "0.31.0",
"sharp": "^0.34.3",
"simplebar-react": "^3.2.4",
"stylis": "^4.3.0",
"stylis-plugin-rtl": "^2.1.1",
"swr": "^2.2.4",
"yet-another-react-lightbox": "^3.15.6",
"yup": "^1.3.2"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@commitlint/cli": "20.0.0",
"@commitlint/config-conventional": "20.0.0",
"@svgr/webpack": "^8.1.0",
"@types/autosuggest-highlight": "^3.2.3",
"@types/jsonwebtoken": "^9.0.6",
"@types/lodash": "^4.14.202",
"@types/node": "24.6.0",
"@types/nprogress": "^0.2.3",
"@types/react": "19.1.15",
"@types/react-google-recaptcha": "^2.1.9",
"@types/react-lazy-load-image-component": "^1.6.3",
"@types/react-slick": "^0.23.12",
"@types/stylis": "^4.2.4",
"@typescript-eslint/eslint-plugin": "8.45.0",
"@typescript-eslint/parser": "8.45.0",
"cross-env": "^10.1.0",
"dotenv": "17.2.3",
"file-loader": "6.2.0",
"husky": "9.1.7",
"typescript": "5.3.3",
"url-loader": "4.1.1"
},
"overrides": {
"chalk": "5.3.0",
"strip-ansi": "7.1.0",
"color-convert": "2.0.1",
"color-name": "1.1.4",
"is-core-module": "2.13.1",
"error-ex": "1.3.2",
"has-ansi": "5.0.1",
"crypto-es": "2.1.0",
"axios": "1.7.4",
"ws": "8.17.1"
},
"cacheDirectories": [
".next/cache"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=22.10.0",
"npm": ">=10.9.0",
"yarn": ">=1.22.22"
},
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit"
}
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}