-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.74 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
{
"name": "panther",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"clean": "rimraf .next && rimraf node_modules",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore .",
"prepare": "husky install",
"test": "jest --watch",
"test:ci": "jest --ci",
"test:e2e": "playwright test"
},
"dependencies": {
"@nextui-org/react": "^2.1.13",
"autoprefixer": "10.4.16",
"classnames": "^2.3.2",
"eslint": "8.50.0",
"eslint-config-next": "13.5.3",
"framer-motion": "^10.16.4",
"next": "13.5.3",
"next-intl": "^2.20.2",
"next-themes": "^0.2.1",
"postcss": "8.4.30",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-feather": "^2.0.10",
"rtl-detect": "^1.0.4",
"tailwindcss": "3.3.3",
"typescript": "5.2.2"
},
"devDependencies": {
"@playwright/test": "^1.38.1",
"@testing-library/jest-dom": "6.1.3",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.5.1",
"@types/jest": "^29.5.5",
"@types/node": "20.7.0",
"@types/react": "18.2.23",
"@types/react-dom": "18.2.7",
"@types/rtl-detect": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-tailwindcss": "^0.5.4",
"rimraf": "^5.0.4"
}
}