This repository was archived by the owner on Jan 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
66 lines (66 loc) · 1.94 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "acmessenger",
"version": "1.0.0",
"description": "Fullstack chat application",
"scripts": {
"start": "parcel ./src/index.html",
"test": "react-scripts test",
"build": "parcel build ./src/index.html",
"eject": "react-scripts eject",
"format": "prettier --write \"src/**/*.{js,jsx}\"",
"format:check": "prettier --write \"src/**/*.{js,jsx}\"",
"lint": "eslint \"src/**/*.{js,jsx}\" --quiet",
"dev": "react-scripts start"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"autoprefixer": "^10.4.7",
"buffer": "^6.0.3",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"parcel": "^2.7.0",
"parcel-resolver-ts-base-url": "^1.1.5",
"postcss": "^8.4.14",
"prettier": "^2.6.2",
"process": "^0.11.10",
"tailwindcss": "^3.1.4"
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.5",
"@types/jest": "^29.0.0",
"@types/node": "^18.7.15",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"@types/react-redux": "^7.1.24",
"@types/uuid": "^8.3.4",
"date-fns": "^2.29.3",
"firebase": "^9.9.4",
"framer-motion": "^6.4.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-firebase-hooks": "^5.0.3",
"react-icons": "^4.4.0",
"react-redux": "^8.0.2",
"redux": "^4.2.0",
"redux-persist": "^6.0.0",
"tailwind-scrollbar-hide": "^1.1.7",
"typescript": "^4.8.2",
"uuid": "^9.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alicalimli/ac-messenger.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/alicalimli/ac-messenger/issues"
},
"homepage": "https://github.com/alicalimli/ac-messenger#readme"
}