-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.26 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
{
"name": "stay-watch-front",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "run-p dev:*",
"dev:next": "next dev",
"build": "next build",
"start": "next start",
"lint": "run-p lint:*",
"lint:prettier": "prettier --ignore-path .gitignore --check ./src",
"lint:eslint": "eslint --ext .js,jsx,.ts,.tsx ./src",
"lint:tsc": "tsc --noEmit",
"fix": "run-p fix:*",
"fix:prettier": "prettier --ignore-path .gitignore --write ./src",
"fix:lint": "eslint --ext .js,jsx,.ts,.tsx --fix ./src",
"test": "jest",
"test:w": "jest --watch"
},
"dependencies": {
"@amcharts/amcharts4": "^4.10.25",
"@builder.io/partytown": "^0.9.2",
"@emotion/react": "^11.9.3",
"@emotion/server": "^11.10.0",
"@headlessui/react": "^1.6.6",
"@heroicons/react": "^1.0.6",
"@mantine/core": "^7.11.2",
"@mantine/form": "^7.11.2",
"@mantine/hooks": "^7.11.2",
"@swc/core": "^1.4.1",
"@tabler/icons": "^2.2.0",
"@tabler/icons-react": "^2.47.0",
"axios": "^0.26.1",
"firebase": "9.21.0",
"next": "^14.2.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^4.4.0",
"react-sizeme": "^3.0.2",
"react-use": "^17.4.0",
"recoil": "^0.7.4",
"swr": "^2.1.0",
"usehooks-ts": "^2.5.3",
"zod": "^3.21.4"
},
"resolutions": {
"@types/react": "17.0.40"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "12",
"@types/jest": "^29.1.1",
"@types/node": "17.0.23",
"@types/react": "17.0.43",
"@types/react-dom": "17.0.14",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"autoprefixer": "^10.4.4",
"eslint": "^8.16.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^14.2.5",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-tailwindcss": "^3.5.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.1.2",
"npm-run-all": "^4.1.5",
"pathpida": "^0.18.1",
"postcss": "^8.4.12",
"prettier": "^2.6.2",
"tailwindcss": "^3.0.23",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.5.4"
}
}