-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.04 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.04 KB
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
{
"name": "arriendo-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch",
"postinstall": "husky install"
},
"dependencies": {
"@next/eslint-plugin-next": "^13.0.2",
"@tanstack/react-query": "^4.24.6",
"@tanstack/react-query-devtools": "^4.24.6",
"@types/node": "18.11.9",
"@types/react": "18.0.24",
"@types/react-dom": "18.0.8",
"daisyui": "^2.46.1",
"dayjs": "^1.11.7",
"eslint-plugin-import": "2.25.3",
"markdown-to-jsx": "^7.1.8",
"next": "13.0.1",
"next-auth": "^4.19.2",
"nextjs-progressbar": "^0.0.16",
"parse-link-header": "^2.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "^8.0.5",
"react-syntax-highlighter": "^15.5.0",
"rehype-highlight": "^6.0.0",
"rehype-raw": "^6.1.1",
"rehype-sanitize": "^5.0.1",
"remark-gfm": "^3.0.1"
},
"devDependencies": {
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.2.0",
"@testing-library/user-event": "14.2.0",
"@types/jest": "^29.2.5",
"@types/parse-link-header": "^2.0.0",
"@types/react": "18.0.9",
"@types/react-syntax-highlighter": "^15.5.6",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.0.0",
"autoprefixer": "^10.4.13",
"babel-jest": "^29.3.1",
"commitizen-emoji": "^1.0.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": ">=8.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^13.0.2",
"eslint-config-xo": "^0.42.0",
"eslint-config-xo-typescript": "^0.53.0",
"eslint-plugin-react": "^7.31.10",
"husky": "^8.0.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "28.1.0",
"lint-staged": "^13.0.3",
"postcss": "^8.4.19",
"tailwindcss": "^3.2.4",
"ts-jest": "^29.0.3",
"typescript": ">=4.4"
},
"config": {
"commitizen": {
"path": "./node_modules/commitizen-emoji"
}
}
}