-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.17 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
{
"name": "land",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prepare": "husky install",
"export": "next export",
"format": "prettier --write .",
"test": "jest"
},
"dependencies": {
"@chakra-ui/icons": "2.1.1",
"@chakra-ui/react": "2.8.2",
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"@tanstack/react-query": "^5.56.2",
"@tawk.to/tawk-messenger-react": "^2.0.2",
"@vercel/analytics": "^1.3.1",
"axios": "^1.7.7",
"dayjs": "^1.11.13",
"framer-motion": "10.16.16",
"i18next": "22.4.15",
"next": "13",
"next-i18next": "13.2.2",
"nextjs-google-analytics": "2.1.0",
"react": "18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "18.2.0",
"react-i18next": "12.2.2",
"react-icons": "5.2.1",
"react-intersection-observer": "^9.13.1",
"react-select": "^5.8.2",
"ts-adt": "^2.1.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "3.4.2",
"@jest/globals": "^29.7.0",
"@types/node": "18.0.0",
"@types/react": "^18.3.11",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "5.10.1",
"@typescript-eslint/parser": "5.10.1",
"eslint": "8.2.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "16.1.0",
"eslint-config-next": "13",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"husky": "7.0.4",
"jest": "^29.7.0",
"lint-staged": "12.3.2",
"prettier": "2.7.1",
"ts-jest": "^29.2.5",
"typescript": "4.7.4"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --fix",
"*.{js,css,md,ts,tsx}": "prettier --write"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"transform": {
"node_modules/variables/.+\\.(j|t)sx?$": "ts-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!variables/.*)"
]
}
}