-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.44 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
{
"name": "fastagram-frontend",
"version": "0.1.0",
"homepage": "https://turkaytunc.github.io/fastagram-frontend",
"private": true,
"dependencies": {
"@craco/craco": "^6.1.2",
"@fullhuman/postcss-purgecss": "^3.0.0",
"autoprefixer": "^9.8.6",
"joi": "^17.4.0",
"loadtest": "^5.1.2",
"postcss": "^7.0.35",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.1.2"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"lint": "eslint . --ext .js,.ts,.tsx,.jsx",
"test": "craco test",
"test:dev": "craco test --watchAll --coverage",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"jest": {
"collectCoverageFrom": [
"**/src/**/*.(ts|tsx)",
"!**/interfaces/**",
"!**/index.ts",
"!**/react-app-env.d.ts",
"!**/index.tsx"
],
"coverageReporters": [
"json",
"text",
"html",
"lcov"
],
"coverageThreshold": {
"global": {
"branches": 85,
"functions": 85,
"lines": 85,
"statements": 85
}
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@tailwindcss/postcss7-compat": "^2.1.2",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.6",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.23",
"@types/node": "^15.0.2",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.4",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-standard": "^5.0.0",
"prettier": "^2.3.0",
"sass": "^1.32.12",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"typescript": "^4.2.4"
}
}