-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.7 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
{
"name": "github-repositories",
"private": true,
"version": "0.0.0",
"scripts": {
"lint": "eslint --cache --ext .ts,.tsx",
"test": "vitest run --config vite.config.ts",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"prepare": "husky install",
"cypress:run": "cypress run",
"cypress:open": "cypress open"
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.1",
"@uiball/loaders": "^1.2.6",
"lodash.debounce": "^4.0.8",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-markdown": "^8.0.3",
"react-query": "^3.38.0",
"react-redux": "^8.0.1",
"react-router-dom": "^6.3.0",
"rehype-raw": "^6.1.1",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@testing-library/user-event": "^14.1.1",
"@types/lodash.debounce": "^4.0.7",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"@vitejs/plugin-react": "^1.3.0",
"cypress": "^9.6.0",
"eslint": "^8.14.0",
"eslint-plugin-react": "^7.29.4",
"husky": "^7.0.4",
"jsdom": "^19.0.0",
"lint-staged": "^12.4.1",
"typescript": "^4.6.3",
"vite": "^2.9.5",
"vitest": "^0.10.0"
},
"lint-staged": {
"*.jsx": "npm run lint"
}
}