-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.59 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
{
"name": "community-chat",
"version": "1.0.0",
"description": "Community chat, basado en el diseño de leonidasesteban.com",
"main": "index.js",
"type": "module",
"scripts": {
"preview": "vite preview",
"build": "vite build",
"dev": "vite",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write {*.js,src/**/*.{js,jsx}}",
"lint": "eslint src/ --ext jsx,js --fix",
"prepare": "husky install"
},
"keywords": [],
"author": "ivanrice",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"@vitejs/plugin-react": "^2.2.0",
"babel-plugin-styled-components": "^1.13.3",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.0",
"lint-staged": "^11.2.6",
"prettier": "^2.4.1",
"vite": "^3.2.4"
},
"dependencies": {
"@apollo/client": "^3.5.7",
"axios": "^0.28.0",
"graphql": "^16.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-icons": "^4.3.1",
"react-loader-spinner": "^5.1.5",
"react-redux": "^7.2.6",
"react-router-dom": "^6.0.2",
"redux": "^4.1.2",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.4.0",
"styled-components": "^5.3.3",
"twilio-video": "^2.25.0"
}
}