-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
101 lines (101 loc) · 2.72 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
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
{
"name": "brdevstreamers-ui",
"version": "0.1.0",
"private": true,
"dependencies": {
"@auth0/auth0-react": "^1.9.0",
"@chakra-ui/icons": "^1.1.5",
"@chakra-ui/react": "^1.8.3",
"@emotion/react": "11",
"@emotion/styled": "11",
"@fingerprintjs/fingerprintjs": "^3.3.2",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"apexcharts": "^3.33.1",
"axios": "^0.25.0",
"date-fns": "^2.28.0",
"framer-motion": "^6.2.8",
"nanoid": "^3.3.1",
"react": "^17.0.2",
"react-apexcharts": "^1.3.9",
"react-cookie": "^4.1.1",
"react-dom": "^17.0.2",
"react-ga": "^3.3.0",
"react-ga4": "^2.0.0",
"react-icons": "^4.3.1",
"react-router-dom": "^6.2.1",
"react-scripts": "5.0.0",
"tmi.js": "^1.8.5",
"typescript": "^4.4.2",
"web-vitals": "^2.1.0"
},
"scripts": {
"cy:run": "cypress run --browser chrome --headless",
"cy:open": "cypress open",
"start": "serve build",
"start:dev": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"type-check": "tsc --pretty --noEmit",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx --max-warnings=0",
"test:debug": "react-scripts --inspect-brk test --runInBand --no-cache",
"postinstall": "husky install",
"prepare": "husky install"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@types/cypress": "^1.1.3",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.13",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.9",
"@types/tmi.js": "^1.8.1",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"commitizen": "^4.2.4",
"cypress": "8.3.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-unused-imports": "^2.0.0",
"git-cz": "^4.8.0",
"husky": "^7.0.4",
"lint-staged": ">=12",
"prettier": "^2.5.1"
},
"lint-staged": {
"src/**/*": [
"yarn lint --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/git-cz"
}
}
}