-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.93 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
{
"name": "league-showcase",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"svgr": "npx @svgr/cli -d src/components/icons --ignore-existing --icon --typescript public/icons",
"lint": "eslint '**/*.{js,jsx,ts,tsx}'",
"prettier": "prettier --write '**/*.{js,jsx,ts,tsx}'"
},
"dependencies": {
"@headlessui/react": "^1.6.4",
"@heroicons/react": "^1.0.6",
"@nextui-org/react": "^1.0.0-beta.10",
"@reduxjs/toolkit": "^1.6.0",
"axios": "^1.1.3",
"clsx": "^1.1.1",
"lodash": "^4.17.21",
"next": "12.3.1",
"next-auth": "4.14.0",
"next-compose-plugins": "^2.2.1",
"prettier": "^2.2.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hot-toast": "^2.4.0",
"react-query": "^3.5.16",
"react-redux": "^7.2.4",
"react-scroll-to-top": "^3.0.0",
"react-use": "^15.3.8",
"sass": "^1.32.5"
},
"devDependencies": {
"@svgr/cli": "^5.5.0",
"@types/lodash": "^4.14.186",
"@types/node": "^14.14.13",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.1.16",
"@types/tailwindcss": "^3.0.10",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"autoprefixer": "^10.1.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.2.0",
"husky": "^4.3.7",
"lint-staged": "^10.5.3",
"postcss": "^8.2.4",
"tailwindcss": "^2.0.2",
"typescript": "^4.1.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run lint -- --quiet --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}