-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3 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": "jokes-norris",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:changed": "vitest run --changed",
"test:coverage": "vitest run --coverage",
"lint": "eslint --ext .js --ignore-path .gitignore .",
"pretty": "prettier --write ./src/**/*.{ts,tsx}",
"prepare": "husky install",
"commit": "git-cz"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"yarn lint",
"",
"yarn test:changed"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.4.1",
"@types/history": "^4.7.9",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"axios": "^0.19.2",
"polished": "^3.6.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-error-boundary": "^3.1.3",
"react-icons": "4.2.0",
"react-loading": "^2.0.3",
"react-lottie": "^1.2.3",
"react-redux": "7.2.4",
"react-router": "^5.2.1",
"react-router-dom": "^5.2.0",
"react-toastify": "^8.0.3",
"react-toggle": "^4.1.2",
"react-tooltip": "^4.2.21",
"react-typist": "^2.0.5",
"styled-components": "^5.1.0",
"typescript": "^5.0.4"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@testing-library/dom": "^8.9.1",
"@types/faker": "^5.5.9",
"@types/react-lottie": "^1.2.6",
"@types/react-router-dom": "^5.1.5",
"@types/react-toggle": "^4.0.3",
"@types/react-typing-animation": "^1.6.2",
"@types/react-typist": "^2.0.1",
"@types/styled-components": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/ui": "^0.30.1",
"c8": "^7.13.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.39.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4",
"faker": "^5.5.3",
"husky": "^7.0.0",
"jsdom": "^21.1.1",
"lint-staged": "^11.2.4",
"msw": "^0.35.0",
"prettier": "^2.0.5",
"vite": "^4.3.9",
"vite-plugin-svgr": "^2.4.0",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.30.1",
"vitest-canvas-mock": "^0.2.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}