-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.32 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
{
"name": "side-project-scheduler",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch"
},
"dependencies": {
"@next/font": "13.1.3",
"@tailwindcss/typography": "^0.5.9",
"@tanstack/react-query": "^4.20.4",
"@tanstack/react-query-devtools": "^4.20.4",
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"axios": "^1.3.0",
"eslint": "^8.32.0",
"eslint-config-next": "13.1.3",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-react-hook-form": "^0.2.5",
"immer": "^9.0.19",
"next": "13.1.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.0",
"react-icons": "^4.7.1",
"react-intersection-observer": "^9.4.3",
"react-markdown": "^8.0.5",
"react-query": "^3.39.3",
"rehype-stringify": "^9.0.3",
"remark-breaks": "^3.0.2",
"remark-gfm": "^3.0.1",
"typescript": "4.9.4",
"unified": "^10.1.2",
"use-sound": "^4.0.1",
"zustand": "^4.3.2"
},
"devDependencies": {
"@testing-library/dom": "^9.2.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/react-syntax-highlighter": "^15.5.6",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.0.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.10.2",
"jest": "^29.5.0",
"jest-dom": "^4.0.0",
"jest-environment-jsdom": "^29.5.0",
"jest-transform-css": "^6.0.1",
"msw": "^1.2.1",
"postcss": "^8.4.21",
"prettier": "^2.8.3",
"prettier-eslint": "^15.0.1",
"prettier-eslint-cli": "^7.1.0",
"tailwindcss": "^3.2.4",
"ts-jest": "^29.0.5"
}
}