-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
90 lines (90 loc) · 2.52 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
{
"name": "twitch-sub-vod",
"version": "0.1.0",
"private": false,
"homepage": "https://PogU.live",
"dependencies": {
"axios": "0.21.1",
"babel-plugin-module-resolver": "4.1.0",
"next": "10.2.0",
"next-images": "1.7.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-ga": "3.3.0",
"react-icons": "4.1.0",
"react-player": "2.9.0",
"react-test-renderer": "^17.0.2",
"styled-components": "5.2.0",
"typescript": "4.1.3"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --passWithNoTests",
"test:dev": "jest --watchAll",
"coverage": "jest --coverage",
"prepare": "husky install"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "5.11.10",
"@testing-library/react": "11.2.6",
"@testing-library/user-event": "7.1.2",
"@types/gtag.js": "0.0.4",
"@types/jest": "26.0.22",
"@types/node": "14.14.20",
"@types/react": "17.0.0",
"@types/styled-components": "5.1.9",
"@typescript-eslint/eslint-plugin": "4.3.0",
"@typescript-eslint/parser": "4.3.0",
"babel-plugin-styled-components": "1.12.0",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "6.12.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-typescript": "2.3.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "6.0.0",
"jest": "26.6.3",
"jest-sonar-reporter": "2.0.0",
"prettier": "2.2.1"
},
"jest": {
"moduleNameMapper": {
"^@/components(.*)$": "<rootDir>/components$1",
"^@/pages(.*)$": "<rootDir>/pages$1",
"^@/styles(.*)$": "<rootDir>/styles$1",
"^@/utils(.*)$": "<rootDir>/utils$1",
"^@/utils/animations(.*)$": "<rootDir>/utils/animations$1",
"^@/assets(.*)$": "<rootDir>/assets$1",
"^@/stores(.*)$": "<rootDir>/stores$1"
},
"collectCoverage": true,
"coverageDirectory": ".coverage",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"testResultsProcessor": "jest-sonar-reporter",
"clearMocks": true,
"setupFilesAfterEnv": [
"./jest.setup.js"
]
}
}