-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.51 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
{
"name": "jorgitos-chat",
"version": "1.0.0",
"description": "Un chat que construimos en vivo en https://twitch.tv/xabadu 📺🍅🔥",
"scripts": {
"build": "parcel build src/index.html",
"start": "parcel src/index.html",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Xabadu/jorgitos-chat.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Xabadu/jorgitos-chat/issues"
},
"homepage": "https://github.com/Xabadu/jorgitos-chat#readme",
"devDependencies": {
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^10.3.0",
"cypress": "^4.8.0",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.3.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.11",
"parcel": "^2.0.0-beta.1",
"prettier": "2.0.5"
},
"dependencies": {
"date-fns": "^2.14.0",
"firebase": "^7.15.2",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"styled-components": "^5.1.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js, *.jsx": [
"prettier --write",
"eslint --cache --fix"
]
}
}