-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.25 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
{
"name": "facesmash-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"build-stats": "cross-env ANALYZE=true npm run build",
"check-types": "tsc --noEmit --pretty",
"lint": "next lint",
"clean": "rimraf .next out",
"prepare": "husky install",
"prettier": "prettier --write ."
},
"dependencies": {
"@chakra-ui/react": "^2.4.3",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@hookform/resolvers": "^2.9.11",
"dayjs": "^1.11.7",
"eslint": "^8.33.0",
"eslint-config-next": "^13.1.6",
"firebase": "^9.15.0",
"framer-motion": "^7.10.0",
"next": "12.3.0",
"next-seo": "^5.14.1",
"nprogress": "^0.2.0",
"react": "18.2.0",
"react-avatar": "^5.0.3",
"react-dom": "18.2.0",
"react-error-boundary": "^3.1.4",
"react-files": "^3.0.0",
"react-hook-form": "^7.43.1",
"react-icons": "^5.3.0",
"react-infinite-scroll-component": "^6.1.0",
"tailwind-scrollbar-hide": "^1.1.7",
"yup": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@next/bundle-analyzer": "^13.1.6",
"@types/node": "^18.11.18",
"@types/nprogress": "^0.2.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"autoprefixer": "^10.4.13",
"cross-env": "^7.0.3",
"cssnano": "^5.1.14",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-tailwindcss": "^3.8.3",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"postcss": "^8.4.19",
"prettier": "^2.8.0",
"prettier-plugin-tailwindcss": "^0.2.2",
"rimraf": "^4.1.2",
"tailwindcss": "^3.2.4",
"typescript": "4.9.3"
}
}