-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.33 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
{
"name": "pokedex",
"description": "Pokedex project, listing and selection of pokemons",
"private": true,
"version": "0.1.1",
"type": "commonjs",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "jest --maxWorkers=2 --passWithNoTests",
"test:watch": "jest --watch --verbose",
"test:coverage": "jest --coverage",
"test:all": "yarn test && yarn test:coverage",
"lint": "eslint src --ext .ts --fix",
"code:check": "yarn code:lint; yarn code:format --check",
"code:clean": "yarn code:lint --fix; yarn code:format --write",
"code:lint": "eslint --ext .js,.jsx,.ts,.tsx \"src/\"",
"code:format": "prettier './src/**/**.{js,jsx,ts,tsx}'",
"code:check:rules": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"postinstall": "husky install; chmod ug+x .husky/*; npm run prepare",
"prepare": "is-ci || husky install"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"lint-staged": {
"*.{ts,js,tsx,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.json": [
"prettier --write"
]
},
"dependencies": {
"@babel/preset-typescript": "^7.21.5",
"@jest/globals": "^29.5.0",
"axios": "^1.2.2",
"axios-mock-adapter": "^1.21.4",
"phosphor-react": "^1.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-icons": "^4.7.1",
"react-loading-skeleton": "^3.3.1",
"react-modal": "^3.16.1",
"react-router-dom": "^6.7.0",
"ts-jest": "^29.1.0",
"vite-plugin-environment": "^1.1.3"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/plugin-syntax-flow": "^7.21.4",
"@babel/preset-env": "^7.21.5",
"@babel/preset-flow": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@tailwindcss/line-clamp": "^0.4.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.1",
"@types/node": "^14.14.35",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/react-helmet": "^6.1.6",
"@types/react-modal": "^3.13.1",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"@vitejs/plugin-react": "^3.0.0",
"autoprefixer": "^10.4.13",
"babel-jest": "^29.5.0",
"eslint": "7.11.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.14.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "10.5.4",
"postcss": "^8.4.21",
"prettier": "2.2.1",
"prettier-plugin-tailwindcss": "^0.3.0",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.5",
"vite": "^4.0.0",
"vite-tsconfig-paths": "^4.2.0"
},
"baseUrl": "./node_modules/@types",
"typeRoots": [
"types"
],
"author": "Tiago Mota",
"license": "ISC"
}