-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.68 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
{
"private": true,
"scripts": {
"dev": "xdg-open http://localhost:3000 & next dev",
"build": "next build",
"start": "next start -p ${PORT:=3000}",
"lint": "eslint . --fix",
"prettier": "prettier . --write",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@headlessui/react": "^1.5.0",
"@mui/icons-material": "^5.3.1",
"emoji-mart": "^3.0.1",
"firebase": "^9.6.3",
"intersection-observer": "^0.12.0",
"next": "12.2.5",
"next-auth": "^4.16.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-error-boundary": "^3.1.4",
"react-hook-form": "^7.28.0",
"sharp": "^0.30.3"
},
"devDependencies": {
"@next/eslint-plugin-next": "12.2.5",
"@tailwindcss/line-clamp": "^0.3.1",
"@types/jest": "^27.4.0",
"@types/next-auth": "^3.15.0",
"@types/node": "^17.0.4",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"autoprefixer": "^10.4.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.1",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.7",
"typescript": "4.5.4"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.ts": "eslint --cache --fix",
"*.tsx": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write",
"*.{ts,tsx,css,md}": "prettier --write"
}
}