-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.92 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.92 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
{
"name": "nextpost",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"lint:check": "eslint . --ext .js,.jsx,.ts,.tsx",
"format": "prettier --write .",
"format:check": "prettier --check .",
"code:check": "npm run lint:check && npm run format:check",
"code:fix": "npm run lint:fix && npm run format"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"@ashxjs/split-view": "^1.0.5",
"@ducanh2912/next-pwa": "^10.2.2",
"@emoji-mart/data": "^1.2.1",
"@emoji-mart/react": "^1.1.1",
"@google-cloud/storage": "^6.12.0",
"@heroicons/react": "^2.0.18",
"@tanstack/react-query": "^4.36.1",
"@vercel/analytics": "^1.0.2",
"@wavesurfer/react": "^1.0.7",
"autoprefixer": "10.4.14",
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"browser-image-compression": "^2.0.2",
"bufferutil": "^4.0.7",
"date-fns": "^3.6.0",
"emoji-mart": "^5.6.0",
"emoji-picker-react": "^4.11.1",
"encoding": "^0.1.13",
"freeice": "^2.2.2",
"javascript-time-ago": "^2.5.9",
"mongoose": "^7.1.0",
"next": "^14.0.4",
"next-auth": "^4.24.5",
"peerjs": "^1.5.2",
"postcss": "8.4.23",
"primereact": "^10.8.0",
"re-resizable": "^6.9.11",
"react": "18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "18.2.0",
"react-draggable": "^4.4.6",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.45.1",
"react-icons": "^4.9.0",
"react-infinite-scroll-component": "^6.1.0",
"react-intersection-observer": "^9.13.0",
"react-masonry-css": "^1.0.16",
"react-mobile-cropper": "^0.10.0",
"react-player": "^2.12.0",
"react-time-ago": "^7.2.1",
"react-toastify": "^9.1.3",
"request": "^2.88.2",
"simple-peer": "^9.11.1",
"socket.io-client": "^4.7.1",
"supports-color": "^8.1.1",
"tailwind-merge": "^2.4.0",
"tailwindcss": "3.3.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/react": "18.2.7",
"eslint": "^8.57.0",
"eslint-config-next": "^14.0.4",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"next-transpile-modules": "^10.0.0",
"prettier": "^3.1.0",
"typescript": "5.0.4"
},
"optionalDependencies": {
"utf-8-validate": "^5.0.10"
},
"engines": {
"node": "20.x"
}
}