-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 2.56 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
102
103
104
105
106
107
108
109
110
{
"name": "rickandmorty",
"short_name": "Rick&&Morty",
"author": "Pol Gubau Amores",
"license": "MIT",
"private": false,
"version": "0.0.1",
"dependencies": {
"@tanstack/react-query": "^4.36.1",
"axios": "^1.5.1",
"jwt-decode": "^3.1.2",
"pol-ui": "^1.0.84",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.11.0",
"react-infinite-scroll-component": "^6.1.0",
"react-router-dom": "^6.15.0",
"recoil": "^0.7.7",
"vite-plugin-svgr": "^4.1.0"
},
"scripts": {
"start": "vite --port 3000 --open",
"build": "vite build",
"test": "jest --watch --config=jest.config.js",
"cy:open": "cypress open",
"cy:run": "cypress run",
"lint": "eslint --ignore-path .gitignore . && stylelint **/*.scss",
"lint:fix": "eslint --fix --ignore-path .gitignore . && stylelint --fix **/*.scss",
"preview": "vite preview"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"eslint-config-codely/typescript"
],
"parserOptions": {
"project": [
"./tsconfig.json"
]
},
"settings": {
"import/resolver": {
"node": {
"extensions": [
".js",
".jsx",
".ts",
".tsx"
]
}
}
},
"overrides": [
{
"files": [
"**/tests/e2e/**/*.spec.ts"
],
"rules": {
"testing-library/await-async-query": 0,
"@typescript-eslint/no-unsafe-member-access": 0,
"@typescript-eslint/no-unsafe-call": 0,
"testing-library/prefer-screen-queries": 0
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@swc/core": "^1.3.42",
"@swc/jest": "^0.2.24",
"@testing-library/cypress": "^8.0.7",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.21",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.15",
"cypress": "^10.3.0",
"eslint": "^8.36.0",
"eslint-config-codely": "^2.1.3",
"eslint-config-react-app": "^7.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-transform-stub": "^2.0.0",
"postcss": "^8.4.28",
"stylelint": "^14.16.1",
"stylelint-config-rational-order": "^0.0.4",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-order": "^5.0.0",
"tailwindcss": "^3.3.3",
"typescript": "^4.9.5",
"vite": "^4.2.1"
}
}